├── .eslintrc.json ├── .github └── preview.png ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── fleekLogo.svg ├── fleekMark.svg ├── next.svg ├── nextMark.svg └── plus.svg ├── src └── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/.github/preview.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/fleekLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/public/fleekLogo.svg -------------------------------------------------------------------------------- /public/fleekMark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/public/fleekMark.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/nextMark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/public/nextMark.svg -------------------------------------------------------------------------------- /public/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/public/plus.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainCord/nextjs-template/HEAD/tsconfig.json --------------------------------------------------------------------------------