first commit

This commit is contained in:
dekun
2026-06-10 19:59:27 +08:00
commit d141623070
813 changed files with 61301 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { ChatGPT } from "@/components/svg";
import { ModeToggle } from "@/components/mode-toggle";
export default function Header() {
return (
<header className="h-14 bg-secondary py-2 shadow">
<div className="mx-auto flex h-full w-full items-center justify-center sm:max-w-md sm:justify-between md:max-w-2xl">
<div className="flex gap-2">
<ChatGPT />
<span></span>
</div>
<ModeToggle />
</div>
</header>
);
}