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

-
+
+ +
); }