"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBase from "@/components/sections/footer/FooterBase"; import Link from "next/link"; import { Mail } from "lucide-react"; export default function ShopPage() { const navItems = [ { name: "Shop", id: "shop" }, { name: "Sets", id: "sets" }, { name: "Hoodies", id: "hoodies" }, { name: "Sweatpants", id: "sweatpants" }, { name: "About", id: "about" }, ]; const footerColumns = [ { title: "Shop", items: [ { label: "Hoodies", href: "/shop/hoodies" }, { label: "Sweatpants", href: "/shop/sweatpants" }, { label: "Sets", href: "/shop/sets" }, { label: "All Products", href: "/shop" }, ], }, { title: "Information", items: [ { label: "About ARCT", href: "/about" }, { label: "Craft & Materials", href: "/craft-materials" }, { label: "Sustainability", href: "/sustainability" }, { label: "FAQ", href: "/faq" }, ], }, { title: "Support", items: [ { label: "Shipping & Returns", href: "/shipping-returns" }, { label: "Contact", href: "/contact" }, { label: "Size Guide", href: "#" }, { label: "Terms & Privacy", href: "#" }, ], }, ]; return (
); }