import { Link } from "react-router-dom"; import { Separator } from "@/components/ui/separator"; const footerLinks = { shop: [ { label: "New Arrivals", to: "/products" }, { label: "Best Sellers", to: "/products" }, { label: "Sale", to: "/products" }, { label: "Collections", to: "/products" }, ], help: [ { label: "Customer Service", to: "/" }, { label: "Size Guide", to: "/" }, { label: "Shipping & Returns", to: "/" }, { label: "FAQ", to: "/" }, ], about: [ { label: "Our Story", to: "/" }, { label: "Sustainability", to: "/" }, { label: "Careers", to: "/" }, { label: "Press", to: "/" }, ], }; export default function Footer() { return ( ); }