├── .eslintrc.json ├── .gitignore ├── README.md ├── app └── store │ ├── index.ts │ └── slices │ ├── product.ts │ └── profile.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── hello.ts ├── index.tsx ├── product.tsx └── profile.tsx ├── public ├── favicon.ico └── vercel.svg ├── styles └── styles.scss └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/README.md -------------------------------------------------------------------------------- /app/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/app/store/index.ts -------------------------------------------------------------------------------- /app/store/slices/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/app/store/slices/product.ts -------------------------------------------------------------------------------- /app/store/slices/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/app/store/slices/profile.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/pages/product.tsx -------------------------------------------------------------------------------- /pages/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/pages/profile.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/styles.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmswi/nextjs-starter/HEAD/tsconfig.json --------------------------------------------------------------------------------