import Link from "next/link"; import { BrandLogo } from "@/components/brand/brand-logo"; import { MARKETING_FOOTER_COMPANY, MARKETING_FOOTER_LEGAL, MARKETING_FOOTER_PRODUCT, } from "@/lib/marketing-nav"; /** Official mark aspect ~231.6 / 236 — keep copy column = logo width */ const FOOTER_LOGO_HEIGHT = 176; const FOOTER_LOGO_WIDTH = Math.round(FOOTER_LOGO_HEIGHT * (231.602 / 236)); function FooterColumn({ title, items, titleClassName, }: { title: string; items: { label: string; href: string }[]; /** Logo-derived color for the column heading */ titleClassName: string; }) { return (
{title}