Files
gridpilot.gg/apps/website/components/home/Hero.tsx
2026-01-20 21:35:50 +01:00

21 lines
697 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="Professional League Management. Engineered for Control."
description="GridPilot eliminates the administrative overhead of running iRacing leagues. No spreadsheets. No manual points. No protest chaos. Just pure competition, structured for growth."
primaryAction={{ label: 'Create Your League', href: '#' }}
secondaryAction={{ label: 'View Demo', href: '#' }}
/>
);
}