import Link from "next/link" import { Building2, GitFork, Mail, ExternalLink } from "lucide-react" const LINKS = { Product: [ { label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }, { label: "How it works", href: "#how-it-works" }, { label: "FAQ", href: "#faq" }, ], Platform: [ { label: "Dashboard", href: "/login" }, { label: "Tenant portal", href: "/tenant-portal-info" }, { label: "API docs", href: "/api-docs" }, { label: "Status", href: "/status" }, ], Legal: [ { label: "Privacy policy", href: "/privacy" }, { label: "Terms of service", href: "/terms" }, { label: "Cookie policy", href: "/cookie-policy" }, { label: "GDPR", href: "/gdpr" }, ], } export function Footer() { return ( ) }