{items.map((p) => (
diff --git a/src/app/components/SearchBar.tsx b/src/app/components/SearchBar.tsx
new file mode 100644
index 0000000..ce4ce39
--- /dev/null
+++ b/src/app/components/SearchBar.tsx
@@ -0,0 +1,28 @@
+"use client";
+import { useRouter } from "next/navigation";
+import { useState } from "react";
+
+export function SearchBar() {
+ const router = useRouter();
+ const [term, setTerm] = useState("");
+ return (
+
+ );
+}
+
+
diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx
new file mode 100644
index 0000000..b373d6e
--- /dev/null
+++ b/src/app/search/page.tsx
@@ -0,0 +1,14 @@
+import { PostList } from "@/app/components/PostList";
+
+export default function SearchPage({ searchParams }: { searchParams?: { q?: string; sort?: "recent" | "popular" } }) {
+ const q = searchParams?.q ?? "";
+ const sort = searchParams?.sort ?? "recent";
+ return (
+
+ );
+}
+
+
diff --git a/todolist.txt b/todolist.txt
index 7298f26..8390d82 100644
--- a/todolist.txt
+++ b/todolist.txt
@@ -36,7 +36,7 @@
6.1 Hero/공지 배너 컴포넌트(자동/수동 슬라이드) o
6.2 최근/인기 글 리스트 및 무한스크롤 연동 o
6.3 권한 기반 빠른 액션 노출 제어 o
-6.4 검색 바 및 결과 페이지 라우팅
+6.4 검색 바 및 결과 페이지 라우팅 o
6.5 개인화 위젯(최근 본 글/알림 요약)
[게시판/컨텐츠]