'use client'; import { Button } from '@/ui/Button'; import { Container } from '@/ui/Container'; import { Glow } from '@/ui/Glow'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Stack } from '@/ui/primitives/Stack'; 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. * Follows "Precision Racing Minimal" theme. */ export function HomeHeader({ title, subtitle, description, primaryAction, secondaryAction, }: HomeHeaderProps) { return ( {subtitle} {title} {description} ); }