21 lines
610 B
TypeScript
21 lines
610 B
TypeScript
'use client';
|
|
|
|
import { LandingHero } from '@/ui/LandingHero';
|
|
|
|
/**
|
|
* Hero - Refined with Dieter Rams principles.
|
|
* "Less, but better."
|
|
* Focuses on clarity, honesty, and unobtrusive design.
|
|
*/
|
|
export function Hero() {
|
|
return (
|
|
<LandingHero
|
|
subtitle="Sim Racing Infrastructure"
|
|
title="League Management Infrastructure."
|
|
description="Automated results, standings, and stewarding for iRacing leagues. No manual data entry. Structured race management."
|
|
primaryAction={{ label: 'Create League', href: '#' }}
|
|
secondaryAction={{ label: 'View Demo', href: '#' }}
|
|
/>
|
|
);
|
|
}
|