Initial commit
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user