import Link from 'next/link' /** * The canonical "Back to X" link for the landing family - a muted text link with * a left chevron whose shaft draws in on hover. Single source of truth, reused by * the blog post, integration, and model detail pages so the back affordance can't * drift. Season is the global body font; color uses the platform muted→primary * hover idiom. */ interface BackLinkProps { href: string label: string } export function BackLink({ href, label }: BackLinkProps) { return ( {label} ) }