diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index ae0a4af..1a03a8b 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -2,11 +2,24 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ProductCart from '@/components/ecommerce/productCart/ProductCart'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/shop" }, + { name: "Men's", id: "/men" }, + { name: "Women's", id: "/women" }, + { name: "Fabrics", id: "/fabrics" }, + { name: "Wedding", id: "/wedding" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Blog", id: "/blog" }, + { name: "Cart", id: "/cart" }, + { name: "Checkout", id: "/checkout" }, + ]; + return ( - + -
- {}} - title="Your Shopping Cart" - totalLabel="Order Total" - emptyMessage="Your cart is empty. Start exploring our luxury Pakistani fashion!" - items={[ - { - id: "cart-item-1", name: "Emerald Silk Stitched Kurta Set", variants: ["Size: M", "Color: Emerald"], price: "$299.00", quantity: 1, - imageSrc: "http://img.b2bpic.net/free-photo/young-female-model-sleeping-underwear_1303-19340.jpg", imageAlt: "Emerald Silk Stitched Kurta Set"}, - { - id: "cart-item-2", name: "Crimson Velvet Bridal Lehenga", variants: ["Size: L", "Color: Crimson"], price: "$1499.00", quantity: 1, - imageSrc: "http://img.b2bpic.net/free-photo/girl-posing-with-board_1321-1337.jpg", imageAlt: "Crimson Velvet Bridal Lehenga"}, - { - id: "cart-item-3", name: "Charcoal Linen Men's Shalwar Kameez", variants: ["Size: S", "Color: Charcoal"], price: "$189.00", quantity: 2, - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-front-door_23-2148248476.jpg", imageAlt: "Charcoal Linen Men's Shalwar Kameez"} - ]} - total="$2176.00" - buttons={[ - { - text: "Continue Shopping", href: "/shop"}, - { - text: "Proceed to Checkout", href: "/checkout"} - ]} - /> -
+
+

Your cart is currently empty.

+
- +
); diff --git a/src/app/fabrics/page.tsx b/src/app/fabrics/page.tsx index b7138be..ec5272b 100644 --- a/src/app/fabrics/page.tsx +++ b/src/app/fabrics/page.tsx @@ -2,14 +2,25 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; - -import { Diamond, Leaf, ShieldCheck } from 'lucide-react'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/shop" }, + { name: "Men's", id: "/men" }, + { name: "Women's", id: "/women" }, + { name: "Fabrics", id: "/fabrics" }, + { name: "Wedding", id: "/wedding" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Blog", id: "/blog" }, + { name: "Cart", id: "/cart" }, + { name: "Checkout", id: "/checkout" }, + ]; + return ( - + -
- -
+
+ +
-
- -
- - +
); -} +} \ No newline at end of file diff --git a/src/app/wedding/page.tsx b/src/app/wedding/page.tsx index 093592e..03d0a4f 100644 --- a/src/app/wedding/page.tsx +++ b/src/app/wedding/page.tsx @@ -2,12 +2,25 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import TeamCardSix from '@/components/sections/team/TeamCardSix'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/shop" }, + { name: "Men's", id: "/men" }, + { name: "Women's", id: "/women" }, + { name: "Fabrics", id: "/fabrics" }, + { name: "Wedding", id: "/wedding" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Blog", id: "/blog" }, + { name: "Cart", id: "/cart" }, + { name: "Checkout", id: "/checkout" }, + ]; + return ( - + -
- -
+
+ +
-
- -
- - +
); -} +} \ No newline at end of file