├── .eslintrc.json ├── .gitignore ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── favicon.ico └── vercel.svg ├── src ├── components │ ├── Header │ │ ├── NavButton │ │ │ └── index.tsx │ │ ├── NavItem │ │ │ └── index.tsx │ │ └── index.tsx │ └── Page │ │ └── index.tsx ├── pages │ ├── _app.tsx │ ├── about.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx ├── styles │ ├── Home.module.css │ ├── globals.css │ └── theme.ts └── utils │ ├── shorten.ts │ └── tools.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/Header/NavButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/components/Header/NavButton/index.tsx -------------------------------------------------------------------------------- /src/components/Header/NavItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/components/Header/NavItem/index.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/components/Page/index.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/pages/about.tsx -------------------------------------------------------------------------------- /src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/pages/api/hello.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/styles/Home.module.css -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/styles/theme.ts -------------------------------------------------------------------------------- /src/utils/shorten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/utils/shorten.ts -------------------------------------------------------------------------------- /src/utils/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/src/utils/tools.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YannikSood/eth-nextjs-boilerplate/HEAD/tsconfig.json --------------------------------------------------------------------------------