chore(website): port benefits section

This commit is contained in:
Elian Doran
2025-09-26 23:06:57 +03:00
parent b5a491820c
commit 32c15f5e03
6 changed files with 266 additions and 365 deletions

View File

@@ -0,0 +1,17 @@
import { ComponentChildren } from "preact";
interface CardProps {
title: string;
children: ComponentChildren;
}
export default function Card({ title, children }: CardProps) {
return (
<div className="card">
<p>
<span class="text-big">{title}</span><br />
{children}
</p>
</div>
)
}