6.4 검색 바 및 결과 페이지 라우팅 o

This commit is contained in:
koreacomp5
2025-10-09 16:35:19 +09:00
parent e7edb87269
commit c16b9c1a51
5 changed files with 60 additions and 5 deletions

View File

@@ -1,12 +1,14 @@
import { ThemeToggle } from "@/app/components/ThemeToggle";
import { SearchBar } from "@/app/components/SearchBar";
export function AppHeader() {
return (
<header style={{ display: "flex", justifyContent: "space-between", padding: 12 }}>
<div>msg App</div>
<nav style={{ display: "flex", gap: 12 }}>
<nav style={{ display: "flex", gap: 12, alignItems: "center" }}>
<a href="/"></a>
<a href="/boards"></a>
<SearchBar />
<ThemeToggle />
</nav>
</header>