├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── demo.png ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── background.svg ├── favicon.png └── icons │ └── switch.svg ├── src ├── components │ ├── Footer.tsx │ ├── GameCard.tsx │ ├── Header.tsx │ ├── Icons.tsx │ └── Loader.tsx ├── pages │ ├── _app.tsx │ ├── api │ │ └── getGames.ts │ └── index.tsx └── styles │ └── tailwind.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/demo.png -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/public/background.svg -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/icons/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/public/icons/switch.svg -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/GameCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/components/GameCard.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/components/Icons.tsx -------------------------------------------------------------------------------- /src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/components/Loader.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/getGames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/pages/api/getGames.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/nextjs-eshop/HEAD/tsconfig.json --------------------------------------------------------------------------------