Files
2026-01-19 18:01:30 +01:00

25 lines
439 B
TypeScript

'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 <LandingHero {...props} />;
}