import Link from "next/link"; import { BrandLogo } from "@/components/brand/BrandLogo"; import { FooterTopographicBand } from "@/components/brand/FooterTopographicBand"; import { FooterNewsletter } from "@/components/layout/FooterNewsletter"; import { site } from "@/content/site"; const footerColumns = [ { title: "Event", links: [ { href: "/", label: "Home" }, { href: "/payment", label: "Buy tickets" }, { href: "/pitch-competition", label: "Apply to pitch" }, { href: "/program", label: "Program" }, ], }, { title: "Experience", links: [ { href: "/speakers", label: "Lineup" }, { href: "/program", label: "Workshops & panels" }, { href: "/exhibit", label: "Exhibitor hall" }, { href: "/pitch-competition", label: "Pitch finals" }, ], }, { title: "Participate", links: [ { href: "/partners", label: "Partners" }, { href: "/exhibit", label: "Exhibit" }, { href: "/sponsor", label: "Sponsor" }, { href: "/contact", label: "Contact" }, { href: "/privacy", label: "Privacy policy" }, ], }, { title: "Connect", links: [ { href: site.links.legacySite, label: "Legacy site", external: true }, { href: "mailto:info@grvsummit.com", label: "info@grvsummit.com" }, { href: site.venue.mapsUrl, label: "Venue map", external: true }, ], }, ]; export function SiteFooter() { return ( ); }