Full project added

This commit is contained in:
Marcelo Dares
2025-12-17 20:24:06 +00:00
parent fc2e4fd15a
commit 0e9b2dd72d
36 changed files with 2050 additions and 84 deletions

View File

@@ -0,0 +1,12 @@
"use client";
export function Topbar({ title }: { title: string }) {
return (
<div className="h-16 flex items-center justify-between px-4 border-b border-white/10 bg-black/20 backdrop-blur">
<div className="text-lg font-semibold tracking-tight">{title}</div>
<div className="text-xs text-zinc-400">
Live (mock for now)
</div>
</div>
);
}