Add Dockerfile, add raw view

This commit is contained in:
2025-12-21 13:27:12 +01:00
parent 9bb649c9e2
commit b1541f8777
35 changed files with 2811 additions and 78 deletions

View File

@ -0,0 +1,14 @@
import ModeToggle from "./ModeToggle";
import TopNav from "./TopNav";
export default function Header() {
return (
<div className="w-full">
<div className="flex items-center justify-between px-4 md:px-8 py-2">
<TopNav />
<ModeToggle />
</div>
</div>
);
}