'use client'; import { LandingHero } from '@/ui/LandingHero'; interface HomeHeaderProps { title: string; subtitle: string; description: string; primaryAction: { label: string; href: string; }; secondaryAction: { label: string; href: string; }; } /** * HomeHeader - Semantic hero section for the landing page. */ export function HomeHeader(props: HomeHeaderProps) { return ; }