/** * RustyTorch++ Landing Page * * Main entry point showcasing demos across different domains */ import { HeroHeader, FeaturesGrid, PerformanceChart, DemoGallery, } from '../components/landing'; import '../styles/landing.css'; interface LandingPageProps { onSelectDemo: (demoId: string) => void; } export function LandingPage({ onSelectDemo }: LandingPageProps) { return (