import { Link } from "@remix-run/react"; import { Instagram, Send } from "lucide-react"; import logo from "~/assets/logo/SVG-07.svg"; type FooterLink = { label: string; to: string }; type FooterCol = { heading: string; links: FooterLink[] }; const COLUMNS: FooterCol[] = [ { heading: "خرید", links: [ { label: "تازه‌ها", to: "/explore" }, { label: "تخفیف‌ها", to: "/" }, { label: "کالکشن‌ها", to: "/collections" }, { label: "برندها", to: "/sellers" }, ], }, { heading: "ویترون", links: [ { label: "درباره ما", to: "/profile/about" }, { label: "سوالات متداول", to: "/profile/faq" }, ], }, { heading: "پشتیبانی", links: [ { label: "راهنمای خرید", to: "/profile/faq" }, { label: "پیگیری سفارش", to: "/profile/orders" }, ], }, ]; /** * Desktop-only footer. Hidden below the `lg` breakpoint. */ const DesktopFooter = () => { return ( ); }; export default DesktopFooter;