Initial commit

This commit is contained in:
redclawsystems
2026-03-04 00:08:42 +00:00
commit 4d88dc0584
4449 changed files with 1556714 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
/**
* 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 (
<div className="landing-page">
<HeroHeader />
<FeaturesGrid />
<PerformanceChart />
<DemoGallery onLaunchDemo={onSelectDemo} />
<footer className="landing-footer">
<p>
Built with Rust, CUDA, and React |{' '}
<a
href="https://github.com/anthropics/rustytorch"
target="_blank"
rel="noopener noreferrer"
>
GitHub
</a>
</p>
</footer>
</div>
);
}
export default LandingPage;