import Link from "next/link"; import Image from "next/image"; import { Linkedin, Twitter } from "lucide-react"; const footerLinks = [ { title: "Platform", links: [ { href: "/platform", label: "Overview" }, { href: "/platform#identity", label: "Identity" }, { href: "/platform#communication", label: "Communication" }, { href: "/platform#signatures", label: "Signatures" }, { href: "/platform#payments", label: "Payments" }, ], }, { title: "Solutions", links: [ { href: "/ai-agents", label: "AI Agents" }, { href: "/industries", label: "Industries" }, { href: "/security", label: "Security" }, ], }, { title: "Company", links: [ { href: "/contact", label: "Contact" }, { href: "/contact", label: "Book a Demo" }, ], }, ]; export function Footer() { return ( ); }