import Link from "next/link"; import Image from "next/image"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const COMPANY = [ { label: "About Us", href: "/about" }, { label: "Careers", href: "#" }, { label: "Press & News", href: "#" }, { label: "Help Center", href: "#" }, ]; const PARTNERSHIPS = [ { label: "Merchant Partner", href: "/businesses" }, { label: "Delivery Partner", href: "#" }, { label: "Corporate Gifting", href: "#" }, { label: "Local Real Estate", href: "#" }, ]; const LEGAL = [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, { label: "Sitemap", href: "#" }, ]; export function Footer() { return ( ); } function FooterCol({ title, links, }: { title: string; links: { label: string; href: string }[]; }) { return (
{title}
); }