Files
gridpilot.gg/apps/website/components/home/Hero.tsx
2026-01-20 22:31:14 +01:00

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: '#' }}
/>
);
}