gitextract_jnytts6o/ ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── __mocks__/ │ └── fileMock.js ├── __tests__/ │ ├── api/ │ │ └── products.http │ └── unit/ │ ├── cart.test.tsx │ ├── productsDb.test.ts │ └── shipping.test.tsx ├── components/ │ ├── Button.tsx │ ├── Footer.tsx │ ├── Layout.tsx │ ├── MenuBar.tsx │ ├── PageHeadline.tsx │ ├── ProductCard.tsx │ └── ProductCardCart.tsx ├── jest.config.js ├── jest.setup.js ├── lib/ │ ├── cart.tsx │ ├── fetcher.tsx │ ├── mapToObject.tsx │ └── stripeHelpers.tsx ├── license.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages/ │ ├── _app.tsx │ ├── _document.tsx │ ├── api/ │ │ ├── checkout_sessions/ │ │ │ ├── [id].ts │ │ │ └── index.ts │ │ └── products/ │ │ └── index.ts │ ├── cart.tsx │ ├── confirmation.tsx │ ├── index.tsx │ └── products/ │ ├── [slug].tsx │ └── index.tsx ├── prisma/ │ ├── migrations/ │ │ ├── 20210923095130_init/ │ │ │ └── migration.sql │ │ └── migration_lock.toml │ ├── schema.prisma │ └── seed.ts ├── stitches.config.ts ├── tsconfig.json ├── types.d.ts └── yarn-error.log