'use client'; import React from 'react'; import { Button } from '@/ui/Button'; import { Glow } from '@/ui/Glow'; import { Box } from '@/ui/Box'; import { Container } from '@/ui/Container'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; 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} ); }