"use client"; import Link from "next/link"; import Image from "next/image"; import React from "react"; 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 PremiumFooter() { return ( ); }