diff --git a/apps/website2/src/components/Card.tsx b/apps/website2/src/components/Card.tsx index f33c0e083..7506a415e 100644 --- a/apps/website2/src/components/Card.tsx +++ b/apps/website2/src/components/Card.tsx @@ -3,12 +3,13 @@ import { ComponentChildren } from "preact"; interface CardProps { title: string; imageUrl?: string; + className?: string; children: ComponentChildren; } -export default function Card({ title, children, imageUrl }: CardProps) { +export default function Card({ title, children, imageUrl, className }: CardProps) { return ( -
+
{imageUrl && }
diff --git a/apps/website2/src/index.tsx b/apps/website2/src/index.tsx index 790b62ce3..1c8c127e2 100644 --- a/apps/website2/src/index.tsx +++ b/apps/website2/src/index.tsx @@ -5,6 +5,7 @@ import { Home } from './pages/Home/index.jsx'; import { NotFound } from './pages/_404.jsx'; import './style.css'; import Footer from './components/Footer.js'; +import Download from './pages/Download/download.js'; export function App() { return ( @@ -14,6 +15,7 @@ export function App() { +