From 81c0c1f9aee20a514bca5f6df675beeff8c7bbb9 Mon Sep 17 00:00:00 2001 From: HSCHEOL Date: Wed, 21 Jan 2026 14:59:29 +0900 Subject: [PATCH] =?UTF-8?q?test:=EC=BD=94=EB=93=9C=EB=A0=88=EB=B9=97=20?= =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/component/Navbar.tsx | 26 ++++++++++++++++++++++++++ app/page.tsx | 7 ++++--- 2 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 app/component/Navbar.tsx diff --git a/app/component/Navbar.tsx b/app/component/Navbar.tsx new file mode 100644 index 0000000..960b50e --- /dev/null +++ b/app/component/Navbar.tsx @@ -0,0 +1,26 @@ +import React from "react"; + +export default function Navbar() { + return ( +
+ {/* Logo Placeholder */} +
+ + {/* Right Menu */} +
+ {/* 찜한 목록 */} + + + {/* Divider */} +
+ + {/* Log in / Sign in */} + +
+
+ ); +} diff --git a/app/page.tsx b/app/page.tsx index d5d0df7..b900b5e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,9 +1,10 @@ import SeoulMap from "./component/SeoulMap"; +import Navbar from "./component/Navbar"; export default function Home() { return ( -
-

Test

-
+
+ +
); }