├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── (front) │ ├── cart │ │ ├── CartDetails.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── loading.tsx │ ├── order-history │ │ ├── MyOrders.tsx │ │ └── page.tsx │ ├── order │ │ └── [id] │ │ │ ├── OrderDetails.tsx │ │ │ └── page.tsx │ ├── page.tsx │ ├── payment │ │ ├── Form.tsx │ │ └── page.tsx │ ├── place-order │ │ ├── Form.tsx │ │ └── page.tsx │ ├── product │ │ └── [slug] │ │ │ └── page.tsx │ ├── profile │ │ ├── Form.tsx │ │ └── page.tsx │ ├── register │ │ ├── Form.tsx │ │ └── page.tsx │ ├── search │ │ └── page.tsx │ ├── shipping │ │ ├── Form.tsx │ │ └── page.tsx │ └── signin │ │ ├── Form.tsx │ │ └── page.tsx ├── admin │ ├── dashboard │ │ ├── Dashboard.tsx │ │ └── page.tsx │ ├── orders │ │ ├── Orders.tsx │ │ └── page.tsx │ ├── products │ │ ├── Products.tsx │ │ ├── [id] │ │ │ ├── Form.tsx │ │ │ └── page.tsx │ │ └── page.tsx │ └── users │ │ ├── Users.tsx │ │ ├── [id] │ │ ├── Form.tsx │ │ └── page.tsx │ │ └── page.tsx ├── api │ ├── admin │ │ ├── orders │ │ │ ├── [id] │ │ │ │ └── deliver │ │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── products │ │ │ ├── [id] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── summary │ │ │ └── route.ts │ │ └── users │ │ │ ├── [id] │ │ │ └── route.ts │ │ │ └── route.ts │ ├── auth │ │ ├── [...nextauth] │ │ │ └── route.ts │ │ ├── profile │ │ │ └── route.ts │ │ └── register │ │ │ └── route.ts │ ├── cloudinary-sign │ │ └── route.ts │ ├── orders │ │ ├── [id] │ │ │ ├── capture-paypal-order │ │ │ │ └── route.ts │ │ │ ├── create-paypal-order │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── mine │ │ │ └── route.ts │ │ └── route.ts │ └── products │ │ ├── categories │ │ └── route.ts │ │ └── seed │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── not-found.tsx ├── components.json ├── components ├── ClientProvider.tsx ├── DrawerButton.tsx ├── Providers.tsx ├── Sidebar.tsx ├── Wrapper.tsx ├── admin │ └── AdminLayout.tsx ├── carousel │ └── carousel.tsx ├── categories │ ├── Categories.tsx │ └── Overlay.tsx ├── checkout │ └── CheckoutSteps.tsx ├── footer │ └── Footer.tsx ├── header │ ├── Header.tsx │ ├── Menu.tsx │ └── SearchBox.tsx ├── icons │ └── Icons.tsx ├── products │ ├── AddToCart.tsx │ ├── ProductItem.tsx │ ├── ProductItems.tsx │ └── Rating.tsx ├── readMore │ ├── ReadMore.tsx │ └── Text.tsx ├── slider │ ├── CardSlider.tsx │ └── Slider.tsx └── ui │ ├── button.tsx │ └── carousel.tsx ├── lib ├── auth.ts ├── data.ts ├── dbConnect.ts ├── hooks │ ├── useCartStore.ts │ └── useLayout.ts ├── models │ ├── OrderModel.ts │ ├── ProductModel.ts │ └── UserModel.ts ├── paypal.ts ├── services │ └── productService.ts └── utils.ts ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public ├── Logo.svg ├── images │ ├── banner │ │ ├── banner1.webp │ │ └── banner2.webp │ └── categories │ │ ├── Handbags.webp │ │ ├── Pants.webp │ │ └── Shirts.webp ├── next.svg ├── readme │ ├── Fashion-Corner-Fullstack-Next-js-Store-dark.webp │ └── Fashion-Corner-Fullstack-Next-js-Store.webp └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── types └── next-auth.d.ts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /app/(front)/cart/CartDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/cart/CartDetails.tsx -------------------------------------------------------------------------------- /app/(front)/cart/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/cart/page.tsx -------------------------------------------------------------------------------- /app/(front)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/layout.tsx -------------------------------------------------------------------------------- /app/(front)/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/loading.tsx -------------------------------------------------------------------------------- /app/(front)/order-history/MyOrders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/order-history/MyOrders.tsx -------------------------------------------------------------------------------- /app/(front)/order-history/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/order-history/page.tsx -------------------------------------------------------------------------------- /app/(front)/order/[id]/OrderDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/order/[id]/OrderDetails.tsx -------------------------------------------------------------------------------- /app/(front)/order/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/order/[id]/page.tsx -------------------------------------------------------------------------------- /app/(front)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/page.tsx -------------------------------------------------------------------------------- /app/(front)/payment/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/payment/Form.tsx -------------------------------------------------------------------------------- /app/(front)/payment/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/payment/page.tsx -------------------------------------------------------------------------------- /app/(front)/place-order/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/place-order/Form.tsx -------------------------------------------------------------------------------- /app/(front)/place-order/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/place-order/page.tsx -------------------------------------------------------------------------------- /app/(front)/product/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/product/[slug]/page.tsx -------------------------------------------------------------------------------- /app/(front)/profile/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/profile/Form.tsx -------------------------------------------------------------------------------- /app/(front)/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/profile/page.tsx -------------------------------------------------------------------------------- /app/(front)/register/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/register/Form.tsx -------------------------------------------------------------------------------- /app/(front)/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/register/page.tsx -------------------------------------------------------------------------------- /app/(front)/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/search/page.tsx -------------------------------------------------------------------------------- /app/(front)/shipping/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/shipping/Form.tsx -------------------------------------------------------------------------------- /app/(front)/shipping/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/shipping/page.tsx -------------------------------------------------------------------------------- /app/(front)/signin/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/signin/Form.tsx -------------------------------------------------------------------------------- /app/(front)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/(front)/signin/page.tsx -------------------------------------------------------------------------------- /app/admin/dashboard/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/dashboard/Dashboard.tsx -------------------------------------------------------------------------------- /app/admin/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/dashboard/page.tsx -------------------------------------------------------------------------------- /app/admin/orders/Orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/orders/Orders.tsx -------------------------------------------------------------------------------- /app/admin/orders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/orders/page.tsx -------------------------------------------------------------------------------- /app/admin/products/Products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/products/Products.tsx -------------------------------------------------------------------------------- /app/admin/products/[id]/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/products/[id]/Form.tsx -------------------------------------------------------------------------------- /app/admin/products/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/products/[id]/page.tsx -------------------------------------------------------------------------------- /app/admin/products/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/products/page.tsx -------------------------------------------------------------------------------- /app/admin/users/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/users/Users.tsx -------------------------------------------------------------------------------- /app/admin/users/[id]/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/users/[id]/Form.tsx -------------------------------------------------------------------------------- /app/admin/users/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/users/[id]/page.tsx -------------------------------------------------------------------------------- /app/admin/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/admin/users/page.tsx -------------------------------------------------------------------------------- /app/api/admin/orders/[id]/deliver/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/admin/orders/[id]/deliver/route.ts -------------------------------------------------------------------------------- /app/api/admin/orders/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/admin/orders/route.ts -------------------------------------------------------------------------------- /app/api/admin/products/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/admin/products/[id]/route.ts -------------------------------------------------------------------------------- /app/api/admin/products/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/admin/products/route.ts -------------------------------------------------------------------------------- /app/api/admin/summary/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/admin/summary/route.ts -------------------------------------------------------------------------------- /app/api/admin/users/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/admin/users/[id]/route.ts -------------------------------------------------------------------------------- /app/api/admin/users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/admin/users/route.ts -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- 1 | export { GET, POST } from '@/lib/auth'; 2 | -------------------------------------------------------------------------------- /app/api/auth/profile/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/auth/profile/route.ts -------------------------------------------------------------------------------- /app/api/auth/register/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/auth/register/route.ts -------------------------------------------------------------------------------- /app/api/cloudinary-sign/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/cloudinary-sign/route.ts -------------------------------------------------------------------------------- /app/api/orders/[id]/capture-paypal-order/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/orders/[id]/capture-paypal-order/route.ts -------------------------------------------------------------------------------- /app/api/orders/[id]/create-paypal-order/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/orders/[id]/create-paypal-order/route.ts -------------------------------------------------------------------------------- /app/api/orders/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/orders/[id]/route.ts -------------------------------------------------------------------------------- /app/api/orders/mine/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/orders/mine/route.ts -------------------------------------------------------------------------------- /app/api/orders/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/orders/route.ts -------------------------------------------------------------------------------- /app/api/products/categories/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/products/categories/route.ts -------------------------------------------------------------------------------- /app/api/products/seed/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/api/products/seed/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components.json -------------------------------------------------------------------------------- /components/ClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/ClientProvider.tsx -------------------------------------------------------------------------------- /components/DrawerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/DrawerButton.tsx -------------------------------------------------------------------------------- /components/Providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/Providers.tsx -------------------------------------------------------------------------------- /components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/Sidebar.tsx -------------------------------------------------------------------------------- /components/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/Wrapper.tsx -------------------------------------------------------------------------------- /components/admin/AdminLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/admin/AdminLayout.tsx -------------------------------------------------------------------------------- /components/carousel/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/carousel/carousel.tsx -------------------------------------------------------------------------------- /components/categories/Categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/categories/Categories.tsx -------------------------------------------------------------------------------- /components/categories/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/categories/Overlay.tsx -------------------------------------------------------------------------------- /components/checkout/CheckoutSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/checkout/CheckoutSteps.tsx -------------------------------------------------------------------------------- /components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/footer/Footer.tsx -------------------------------------------------------------------------------- /components/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/header/Header.tsx -------------------------------------------------------------------------------- /components/header/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/header/Menu.tsx -------------------------------------------------------------------------------- /components/header/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/header/SearchBox.tsx -------------------------------------------------------------------------------- /components/icons/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/icons/Icons.tsx -------------------------------------------------------------------------------- /components/products/AddToCart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/products/AddToCart.tsx -------------------------------------------------------------------------------- /components/products/ProductItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/products/ProductItem.tsx -------------------------------------------------------------------------------- /components/products/ProductItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/products/ProductItems.tsx -------------------------------------------------------------------------------- /components/products/Rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/products/Rating.tsx -------------------------------------------------------------------------------- /components/readMore/ReadMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/readMore/ReadMore.tsx -------------------------------------------------------------------------------- /components/readMore/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/readMore/Text.tsx -------------------------------------------------------------------------------- /components/slider/CardSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/slider/CardSlider.tsx -------------------------------------------------------------------------------- /components/slider/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/slider/Slider.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/data.ts -------------------------------------------------------------------------------- /lib/dbConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/dbConnect.ts -------------------------------------------------------------------------------- /lib/hooks/useCartStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/hooks/useCartStore.ts -------------------------------------------------------------------------------- /lib/hooks/useLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/hooks/useLayout.ts -------------------------------------------------------------------------------- /lib/models/OrderModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/models/OrderModel.ts -------------------------------------------------------------------------------- /lib/models/ProductModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/models/ProductModel.ts -------------------------------------------------------------------------------- /lib/models/UserModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/models/UserModel.ts -------------------------------------------------------------------------------- /lib/paypal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/paypal.ts -------------------------------------------------------------------------------- /lib/services/productService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/services/productService.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/Logo.svg -------------------------------------------------------------------------------- /public/images/banner/banner1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/images/banner/banner1.webp -------------------------------------------------------------------------------- /public/images/banner/banner2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/images/banner/banner2.webp -------------------------------------------------------------------------------- /public/images/categories/Handbags.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/images/categories/Handbags.webp -------------------------------------------------------------------------------- /public/images/categories/Pants.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/images/categories/Pants.webp -------------------------------------------------------------------------------- /public/images/categories/Shirts.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/images/categories/Shirts.webp -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/readme/Fashion-Corner-Fullstack-Next-js-Store-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/readme/Fashion-Corner-Fullstack-Next-js-Store-dark.webp -------------------------------------------------------------------------------- /public/readme/Fashion-Corner-Fullstack-Next-js-Store.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/readme/Fashion-Corner-Fullstack-Next-js-Store.webp -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyxzb/Fashion-Corner-Next.js-Ecommerce/HEAD/types/next-auth.d.ts --------------------------------------------------------------------------------