diff --git a/components/Button.tsx b/components/Button.tsx index c036039..b4838ff 100644 --- a/components/Button.tsx +++ b/components/Button.tsx @@ -26,13 +26,10 @@ const Button = ({ return ( + ) : ( +
+ + 즐겨찾기 + +
+ 프로필 + {/* 임시 유저 네임 */} + 전상민 +
+
+ )} + + ); +} + +export default HeaderMenu; + diff --git a/components/Layout/Header.tsx b/components/Layout/Header.tsx new file mode 100644 index 0000000..f6698c3 --- /dev/null +++ b/components/Layout/Header.tsx @@ -0,0 +1,22 @@ +import Logo from "@/public/icons/logo.svg"; +import Image from "next/image"; +import Link from "next/link"; +import HeaderMenu from "../HeaderMenu"; + +const Header = () => { + + return ( +
+
+
+ + 로고 + + +
+
+
+ ); +}; + +export default Header; diff --git a/pages/_app.tsx b/pages/_app.tsx index a7a790f..689d600 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,6 +1,12 @@ +import Header from "@/components/Layout/Header"; import "@/styles/globals.css"; import type { AppProps } from "next/app"; export default function App({ Component, pageProps }: AppProps) { - return ; + return ( + <> +
+ + + ); } diff --git a/public/icons/profile.png b/public/icons/profile.png new file mode 100644 index 0000000..65f0a54 Binary files /dev/null and b/public/icons/profile.png differ diff --git a/public/icons/star.png b/public/icons/star.png new file mode 100644 index 0000000..0b6a10d Binary files /dev/null and b/public/icons/star.png differ