gitextract_oskfoxu2/ ├── .eslintrc.json ├── .gitignore ├── README.md ├── components/ │ ├── CartItem.jsx │ ├── Footer.jsx │ ├── Header.jsx │ ├── HeroBanner.jsx │ ├── Menu.jsx │ ├── MenuMobile.jsx │ ├── ProductCard.jsx │ ├── ProductDetailsCarousel.jsx │ ├── RelatedProducts.jsx │ └── Wrapper.jsx ├── jsconfig.json ├── next.config.js ├── package.json ├── pages/ │ ├── _app.js │ ├── _document.js │ ├── api/ │ │ └── hello.js │ ├── cart.js │ ├── category/ │ │ └── [slug].js │ ├── failed.js │ ├── index.js │ ├── product/ │ │ └── [slug].js │ └── success.js ├── postcss.config.js ├── store/ │ ├── cartSlice.js │ └── store.js ├── styles/ │ └── globals.css ├── tailwind.config.js └── utils/ ├── api.js ├── helper.js └── urls.js