'use client' import Link from 'next/link' import { posthog } from '@/lib/posthog' export default function Footer() { return ( ) } function FooterLink({ href, section, children }: { href: string; section: string; children: React.ReactNode }) { return ( posthog.capture('footer_link_clicked', { label: String(children), section })} style={{ textDecoration: 'none', fontSize: 14.5, color: 'rgba(250,250,247,0.7)' }} > {children} ) }