├── .eslintrc ├── .gitignore ├── .prettierrc ├── README.md ├── next-env.d.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── favicon-copy.png └── favicon.ico ├── src ├── components │ └── layout.tsx ├── pages │ ├── _app.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx ├── styles │ └── index.css └── utils │ └── .gitkeep ├── tailwind.config.js └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/public/favicon-copy.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/src/components/layout.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/src/pages/api/hello.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyrelldixon/next-tailwind-typescript-starter/HEAD/tsconfig.json --------------------------------------------------------------------------------