import { Zap } from "lucide-react"; const footerLinks = [ { title: "Company", links: [ { label: "How It Works", href: "#how-it-works" }, { label: "Services", href: "#services" }, { label: "Packages", href: "#packages" }, { label: "Contact", href: "#contact" }, ], }, { title: "Resources", links: [ { label: "FAQ", href: "#faq" }, { label: "Our Impact", href: "#impact" }, { label: "Blog", href: "#" }, { label: "Press Kit", href: "#" }, ], }, { title: "Legal", links: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, ], }, ]; export function Footer() { return ( ); }