21 lines
697 B
TypeScript
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: '#' }}
|
|
/>
|
|
);
|
|
}
|