"use client"; import { motion } from "framer-motion"; import Image from "next/image"; import Link from "next/link"; import { MapPinIcon, PhoneIcon, MailIcon } from "./Icons"; const footerLinks = { company: [ { href: "/what-we-do", label: "What We Do" }, { href: "/culture", label: "Our Culture" }, { href: "/contact", label: "Contact Us" }, ], products: [ { href: "/products", label: "All Products" }, { href: "/sustainability", label: "Sustainability" }, { href: "/state-ordinances", label: "State Ordinances" }, ], categories: [ { href: "/products#packaging", label: "Food Packaging" }, { href: "/products#green", label: "Green Products" }, { href: "/products#janitorial", label: "Janitorial" }, ], }; const territories = [ "Colorado", "Washington", "Oregon", "Idaho", "Utah", "Wyoming", "Montana", "New Mexico", "Nebraska", "Arizona", ]; export default function Footer() { return ( ); }