"use client"; import { Container } from "@/components/container"; import Link from "next/link"; import { Instagram, Youtube, Twitter } from "lucide-react"; export function Footer() { const links = { product: [ { name: "Features", href: "#features" }, { name: "How It Works", href: "#how-it-works" }, { name: "Pricing", href: "#pricing" }, { name: "Examples", href: "#examples" }, ], resources: [ { name: "Blog", href: "/blog" }, { name: "Tutorials", href: "/tutorials" }, { name: "Help Center", href: "/help" }, { name: "API Docs", href: "/docs" }, ], company: [ { name: "About", href: "/about" }, { name: "Careers", href: "/careers" }, { name: "Contact", href: "/contact" }, { name: "Partners", href: "/partners" }, ], legal: [ { name: "Privacy Policy", href: "/privacy" }, { name: "Terms of Service", href: "/terms" }, { name: "Cookie Policy", href: "/cookies" }, ], }; return ( ); }