Migrate sidebar to use Tailwind/Shadcn

This commit is contained in:
2026-01-21 11:36:41 +00:00
parent 4fc155af0a
commit 56a3105913
19 changed files with 2076 additions and 187 deletions

View File

@@ -0,0 +1,11 @@
export default function AppHeader() {
return (
<header className="absolute flex items-center justify-between px-4 py-2 border-b bg-background">
<div className="flex items-center gap-2 text-muted-foreground">
<Book className="h-5 w-5" />
</div>
</header>
)
}