import Link from "next/link"; import { Github, Mail } from "lucide-react"; const YEAR = new Date().getFullYear(); const links = { product: [ { label: "Features", href: "/#features" }, { label: "How It Works", href: "/#how-it-works" }, { label: "Pricing", href: "/#pricing" }, { label: "Sign In", href: "/auth" }, { label: "Get Started", href: "/auth" }, ], resources: [ { label: "GitHub", href: "https://github.com/MawkOne/viben", external: true }, { label: "Documentation", href: "https://github.com/MawkOne/viben", external: true }, { label: "Changelog", href: "https://github.com/MawkOne/viben/releases", external: true }, ], legal: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Contact", href: "mailto:hello@vibnai.com", external: true }, ], }; export function Footer() { return ( ); }