25 lines
439 B
TypeScript
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} />;
|
|
}
|