first commit

This commit is contained in:
Alessio
2026-06-02 04:02:59 +02:00
parent 368f69fdce
commit 8e5f4aafa2
148 changed files with 10590 additions and 110 deletions

View File

@@ -0,0 +1,8 @@
export function EmptyState({ title, text }: { title: string; text?: string }) {
return (
<div className="rounded-lg border border-dashed border-white/10 bg-white/[0.03] p-6 text-center">
<p className="font-medium text-slate-100">{title}</p>
{text ? <p className="mt-1 text-sm text-slate-400">{text}</p> : null}
</div>
);
}