├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── assets ├── cover.jpg ├── demo.gif └── separate.jpg ├── changelog.md ├── code-of-conduct.md ├── components ├── Layout.js ├── SEO.js ├── common │ ├── Button.js │ └── Input.js └── context │ └── AuthContext.js ├── config └── firebase.js ├── contributing.md ├── jsconfig.json ├── next.config.js ├── package.json ├── pages ├── _app.js ├── _document.js ├── api │ └── hello.js ├── index.js ├── login.js └── signup.js ├── public ├── favicon.ico ├── logo-128x128.png ├── logo-512x512.png ├── manifest.json ├── sw.js ├── sw.js.map ├── vercel.svg ├── workbox-1ffba242.js └── workbox-1ffba242.js.map └── styles ├── Auth.module.css ├── Button.module.css ├── Home.module.css ├── Input.module.css └── globals.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/README.md -------------------------------------------------------------------------------- /assets/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/assets/cover.jpg -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/separate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/assets/separate.jpg -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/changelog.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/components/Layout.js -------------------------------------------------------------------------------- /components/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/components/SEO.js -------------------------------------------------------------------------------- /components/common/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/components/common/Button.js -------------------------------------------------------------------------------- /components/common/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/components/common/Input.js -------------------------------------------------------------------------------- /components/context/AuthContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/components/context/AuthContext.js -------------------------------------------------------------------------------- /config/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/config/firebase.js -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/contributing.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/pages/login.js -------------------------------------------------------------------------------- /pages/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/pages/signup.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/logo-128x128.png -------------------------------------------------------------------------------- /public/logo-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/logo-512x512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/sw.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/sw.js.map -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/workbox-1ffba242.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/workbox-1ffba242.js -------------------------------------------------------------------------------- /public/workbox-1ffba242.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/public/workbox-1ffba242.js.map -------------------------------------------------------------------------------- /styles/Auth.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/styles/Auth.module.css -------------------------------------------------------------------------------- /styles/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/styles/Button.module.css -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/Input.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/styles/Input.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaaddev/next-firebase-auth-template/HEAD/styles/globals.css --------------------------------------------------------------------------------