├── .eslintrc.json ├── .husky └── pre-commit ├── public ├── favicon.ico └── vercel.svg ├── components └── layout │ ├── footer.tsx │ ├── index.tsx │ └── header.tsx ├── next.config.js ├── postcss.config.js ├── next-env.d.ts ├── tailwind.config.js ├── .lintstagedrc.js ├── pages ├── index.tsx ├── api │ └── hello.ts ├── _app.tsx ├── private.tsx ├── privatessr.tsx ├── signin.tsx └── signup.tsx ├── .env ├── lib ├── session.ts ├── firebaseConfig │ ├── init.ts │ └── init-admin.ts └── authContext.tsx ├── tsconfig.json ├── .gitignore ├── .github └── workflows │ └── build.yml ├── README.md └── package.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vortexory/nextjs-firebase-tailwindcss/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /components/layout/footer.tsx: -------------------------------------------------------------------------------- 1 | export default function Footer(props: any) { 2 | return