From 991b3139197f1ad217e48d93758968d42370e3f0 Mon Sep 17 00:00:00 2001 From: Kangyeeun0 Date: Mon, 3 Jun 2024 15:41:23 +0900 Subject: [PATCH] Feat: Search UI(#40) --- src/App.jsx | 6 + src/components/hashtag/HashTag.jsx | 1 - .../hashtag/component/branchHashtag.jsx | 2 +- src/components/hashtag/hashtag.css | 1 + src/layout/Header.jsx | 109 +++++++++++------- src/main/_component/MainNotice.jsx | 2 +- src/main/_component/MainRanking.jsx | 2 +- .../central_club/branch/branchCentral.jsx | 3 +- .../branch/component/centralClub.module.css | 6 +- src/menu/central_club/central_club.jsx | 40 +++---- src/menu/login/component/kakaoRedirection.jsx | 15 ++- src/menu/search/component/searchClub.jsx | 31 +++++ .../search/component/searchClub.module.css | 100 ++++++++++++++++ src/menu/search/search.jsx | 101 ++++++++++++++++ src/menu/search/search.module.css | 55 +++++++++ src/menu/small_club/branch/branch_small.jsx | 4 +- .../small_club/branch/component/smallClub.jsx | 1 + .../branch/component/smallClub.module.css | 5 + src/menu/small_club/detail_page/index.jsx | 39 +++++-- 19 files changed, 428 insertions(+), 95 deletions(-) create mode 100644 src/menu/search/component/searchClub.jsx create mode 100644 src/menu/search/component/searchClub.module.css create mode 100644 src/menu/search/search.jsx create mode 100644 src/menu/search/search.module.css diff --git a/src/App.jsx b/src/App.jsx index fc74a03..949f87c 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -13,6 +13,7 @@ import KakaoRedirection from './menu/login/component/kakaoRedirection'; import BranchSmall from './menu/small_club/branch/branch_small'; import BranchHashTag from './components/hashtag/component/branchHashtag'; import ReviewWrite from './menu/small_club/detail_page/review_write'; +import Search from './menu/search/search'; function App() { const isPc = useMediaQuery({ @@ -22,6 +23,9 @@ function App() { query: '(max-width:769px)', }); + //로그인 처리 + //const { isLogIn, setIsLogIn } = useState(false); + return ( <> {isPc && ( @@ -39,6 +43,7 @@ function App() { } /> } /> } /> + } />