first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:52:23 +03:00
commit 880f412e2c
2662 changed files with 866266 additions and 0 deletions

14
ui/components/header.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { ThemeToggle } from "./themeToggle";
import { Separator } from "./ui/separator";
export default function Header({ title }: { title: string }) {
return (
<div className="bg-background fixed top-0 right-0 left-(--sidebar-width) z-10">
<div className="flex items-center justify-between px-3">
<div className="p-3 font-semibold">{title}</div>
<ThemeToggle />
</div>
<Separator className="w-full" />
</div>
);
}