5.4 테마/다크모드 및 반응형 설정 o

This commit is contained in:
koreacomp5
2025-10-09 15:36:13 +09:00
parent ca8fdc4fba
commit 75a0745342
3 changed files with 25 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
import { ThemeToggle } from "@/app/components/ThemeToggle";
export function AppHeader() {
return (
<header style={{ display: "flex", justifyContent: "space-between", padding: 12 }}>
@@ -5,6 +7,7 @@ export function AppHeader() {
<nav style={{ display: "flex", gap: 12 }}>
<a href="/"></a>
<a href="/boards"></a>
<ThemeToggle />
</nav>
</header>
);