chore: add root gitignore and clean build artifacts

This commit is contained in:
PascalSchattenburg
2026-01-22 16:55:28 +01:00
parent 22b34b387b
commit 8c67bcbb7a
339 changed files with 74 additions and 212076 deletions

View File

@@ -11,15 +11,12 @@ export function TopBar({ title, left, right }: TopBarProps) {
return (
<header className="sticky top-0 z-50 bg-white">
<div className="mx-auto max-w-3xl px-4">
<div className="h-16 flex items-center justify-between border-b border-black/10">
<div className="min-h-[96px] flex items-center justify-between">
<div className="min-w-[72px]">{left}</div>
<div className="flex-1 text-center font-medium">{title}</div>
<div className="min-w-[72px] flex justify-end">{right}</div>
</div>
<div className="flex justify-center">
<div className="h-6 w-24 border-x border-b border-black/10 bg-white" />
</div>
</div>
</header>
);