'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/Stack'; import { Section } from '@/ui/Section'; import { ButtonGroup } from '@/ui/ButtonGroup'; 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({ title, subtitle, description, primaryAction, secondaryAction, }: HomeHeaderProps) { return (
{subtitle} {title} {description}
); }