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: "All Products", href: "/shop" }, { label: "Dog Food", href: "/shop/dogs/dry-food" }, { label: "Cat Food", href: "/shop/cats/dry-food" }, { label: "Treats & Snacks", href: "/shop/dogs/treats" }, { label: "Toys", href: "/shop/dogs/toys" }, { label: "Beds & Baskets", href: "/shop/dogs/beds-and-baskets" }, { label: "Grooming & Care", href: "/shop/dogs/grooming-and-care" }, { label: "Leads & Collars", href: "/shop/dogs/leads-and-collars" }, { label: "Bowls & Feeders", href: "/shop/dogs/bowls-and-feeders" }, { label: "Flea & Worming", href: "/shop/dogs/flea-tick-and-worming-treatments" }, { label: "Clothing", href: "/shop/dogs/clothing" }, ]; const specialtyGroups = [ { heading: "Brands", links: [ { label: "Almo Nature", href: "/brands/almo-nature" }, { label: "Applaws", href: "/brands/applaws" }, { label: "Arden Grange", href: "/brands/arden-grange" }, { label: "Shop All", href: "/shop" }, ], }, { heading: "Accessories", links: [ { label: "Crates & Travel", href: "/shop/dogs/crates-and-travel-accessories" }, { label: "Kennels & Gates", href: "/shop/dogs/kennels-flaps-and-gates" }, { label: "Trees & Scratching", href: "/shop/cats/trees-and-scratching-posts" }, ], }, ]; const engagementGroups = [ { heading: "Community", links: [ { label: "Adopt a Pet", href: "/community/adopt" }, { label: "Pet Pharmacy", href: "/pharmacy" }, { label: "Pet Services", href: "/services" }, ], }, { 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 utilityGroups = [ { heading: "Content", links: [ { label: "Blog", href: "/blog" }, { label: "Tips & Tricks", href: "/tips" }, { label: "Pet Guides", href: "/guides" }, ], }, { heading: "Support", links: [ { label: "Order Tracking", href: "/account/orders" }, { label: "Shipping Info", href: "/support/shipping" }, { label: "Returns & Refunds", href: "/support/returns" }, { label: "FAQs", href: "/support/faqs" }, ], }, { heading: "Company", links: [ { label: "About Us", href: "/about" }, { label: "Contact Us", href: "/contact" }, { label: "Careers", href: "/careers" }, ], }, ]; function FooterColumn({ groups, }: { groups: { heading: string; links: { label: string; href: string }[] }[]; }) { return (
{groups.map((group) => (

{group.heading}

))}
); } export function Footer() { return ( ); }