import Link from "next/link" import { GitFork, Mail, ExternalLink } from "lucide-react" import { Logo } from "@/components/shared/logo" import { LEGAL_PAGES } from "@/lib/legal" 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" }, ], Legal: LEGAL_PAGES.map((p) => ({ label: p.label, href: p.href })), } export function Footer() { return ( ) }