chore(website): remove old website

This commit is contained in:
Elian Doran
2025-09-27 01:42:15 +03:00
parent 3cf0ec5740
commit a11797fe6e
77 changed files with 76 additions and 904 deletions

View File

@@ -0,0 +1,21 @@
import { ComponentChildren } from "preact";
interface CardProps {
title: string;
imageUrl?: string;
className?: string;
children: ComponentChildren;
}
export default function Card({ title, children, imageUrl, className }: CardProps) {
return (
<div className={`card ${className}`}>
{imageUrl && <img class="image" src={imageUrl} />}
<div className="card-content">
<h3>{title}</h3>
{children}
</div>
</div>
)
}