import Image from "next/image"; import { BrandLogo } from "@/components/layout/BrandLogo"; const carriers = [ { name: "DPD", src: "/images/carriers/dpd.png", width: 30, height: 15 }, { name: "Evri", src: "/images/carriers/evri.png", width: 30, height: 15 }, ]; const paymentMethods = [ { name: "Visa", src: "/images/payment-methods/visa_card.svg" }, { name: "Mastercard", src: "/images/payment-methods/master_card.svg" }, { name: "Discover", src: "/images/payment-methods/discovery_card.svg" }, { name: "Apple Pay", src: "/images/payment-methods/apple_pay.svg" }, { name: "Google Pay", src: "/images/payment-methods/google_pay.svg" }, { name: "Link", src: "/images/payment-methods/link.svg" }, { name: "Revolut Pay", src: "/images/payment-methods/revoult_pay.svg" }, { name: "Billie", src: "/images/payment-methods/billie.svg" }, { name: "Cartes", src: "/images/payment-methods/cartes.svg" }, { name: "Klarna", src: "/images/payment-methods/klarna.svg" }, ]; const linkClasses = "text-sm text-[#3d5554] transition-colors hover:text-[#38a99f]"; function FacebookIcon() { return ( ); } function InstagramIcon() { return ( ); } function TwitterIcon() { return ( ); } const shopLinks = [ { label: "Pet Toys", href: "/shop/toys" }, { label: "Pet Treats", href: "/shop/treats" }, { label: "Cats Food", href: "/shop/cats/cat-dry-food" }, { label: "Dogs Food", href: "/shop/dogs/dog-dry-food" }, { label: "Cat Grooming & Care", href: "/shop/cats/cat-feliway-care" }, { label: "Dogs Grooming & Care", href: "/shop/dogs/dog-grooming-care" }, ]; const specialtyGroups = [ { heading: "Promotions", links: [ { label: "Special Offers", href: "/shop/sale" }, { label: "Top Picks", href: "/shop/top-picks" }, { label: "What's New", href: "/shop/recently-added" }, ], }, ]; const engagementGroups = [ { heading: "Support", links: [ { label: "Order Tracking", href: "/account/orders" }, { label: "Shipping", href: "/support/shipping" }, { label: "Returns & Refunds", href: "/support/returns" }, { label: "Payment Security", href: "/support/payment-security" }, { label: "FAQs", href: "/support/faqs" }, ], }, ]; const utilityGroups = [ // { // heading: "Content", // links: [ // { label: "Blog", href: "/blog" }, // { label: "Tips & Tricks", href: "/tips" }, // { label: "Pet Guides", href: "/guides" }, // ], // }, { heading: "Company", links: [ // { label: "About Us", href: "/about" }, { label: "Contact Us", href: "/support/contact-us" }, { label: "General Terms and Conditions", href: "/legal/general-terms-and-conditions" }, ], }, ]; function FooterColumn({ groups, }: { groups: { heading: string; links: { label: string; href: string }[] }[]; }) { return (