"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import ProductCardFour from "@/components/sections/product/ProductCardFour"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { Package, Star } from "lucide-react"; export default function ShopPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Cart", id: "/cart" }, ]; const footerColumns = [ { items: [ { label: "Home", href: "/" }, { label: "Shop", href: "/shop" }, { label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }, ], }, { items: [ { label: "Collections", href: "/shop" }, { label: "Custom Orders", href: "/contact" }, { label: "Bulk Pricing", href: "/contact" }, { label: "Care Guide", href: "#" }, ], }, { items: [ { label: "WhatsApp Support", href: "#" }, { label: "Email Us", href: "#" }, { label: "Location", href: "#" }, { label: "Returns", href: "#" }, ], }, { items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "Shipping Info", href: "#" }, { label: "FAQ", href: "/contact" }, ], }, ]; return (
); }