From 71fa6cb1afb731fb1c18baada1482b1684eb1bf9 Mon Sep 17 00:00:00 2001 From: HarrySeop Date: Tue, 5 Aug 2025 01:41:31 +0900 Subject: [PATCH 1/5] =?UTF-8?q?=E2=99=BB=EF=B8=8F[#263]=20Refactor:=20?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/what-today/src/layouts/DefaultLayout.tsx | 16 ++++++---------- apps/what-today/src/pages/activities/index.tsx | 18 ++++++++++-------- 2 files changed, 16 insertions(+), 18 deletions(-) diff --git a/apps/what-today/src/layouts/DefaultLayout.tsx b/apps/what-today/src/layouts/DefaultLayout.tsx index 7fde4502..7ba80257 100644 --- a/apps/what-today/src/layouts/DefaultLayout.tsx +++ b/apps/what-today/src/layouts/DefaultLayout.tsx @@ -1,5 +1,6 @@ import { Footer } from '@what-today/design-system'; import { Outlet, useLocation } from 'react-router-dom'; +import { twJoin } from 'tailwind-merge'; import FloatingTranslateButton from '@/components/FloatingTranslateButton'; import Header from '@/components/Header'; @@ -10,27 +11,22 @@ export default function DefaultLayout() { const { isDesktop } = useResponsive(); const isActivityDetailPage = location.pathname.startsWith('/activities/'); - const footerMarginBottom = isActivityDetailPage && !isDesktop ? 'w-full mb-125' : 'w-full'; + // const footerMarginBottom = isActivityDetailPage && !isDesktop ? 'w-full mb-120' : 'w-full'; // FloatingTranslateButton의 bottom 위치 조건부 설정 const floatingButtonClass = !isDesktop && isActivityDetailPage ? 'bottom-160' : undefined; return ( -
+
-
+ +
-
+
diff --git a/apps/what-today/src/pages/activities/index.tsx b/apps/what-today/src/pages/activities/index.tsx index ec713bc0..b21571b5 100644 --- a/apps/what-today/src/pages/activities/index.tsx +++ b/apps/what-today/src/pages/activities/index.tsx @@ -101,7 +101,7 @@ export default function ActivityDetailPage() {
-
+
- +
+ +
) : ( From 0407fa49dc2dedac765eacd5b4d184793e867035 Mon Sep 17 00:00:00 2001 From: HarrySeop Date: Tue, 5 Aug 2025 01:42:47 +0900 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=8E=A8=20[#263]=20Style:=20=EB=B2=88?= =?UTF-8?q?=EC=97=AD=20=EC=96=B8=EC=96=B4=20=EC=BB=A8=ED=85=90=EC=B8=A0=20?= =?UTF-8?q?=EB=84=88=EB=B9=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/what-today/src/components/FloatingTranslateButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/what-today/src/components/FloatingTranslateButton.tsx b/apps/what-today/src/components/FloatingTranslateButton.tsx index c3c3f27a..11eb18e7 100644 --- a/apps/what-today/src/components/FloatingTranslateButton.tsx +++ b/apps/what-today/src/components/FloatingTranslateButton.tsx @@ -330,7 +330,7 @@ const FloatingTranslateButton: React.FC = ({ class
{/* 언어 선택 드롭다운 */} {isOpen && ( -
+
언어 선택
{languages.map((language) => ( From 9c0d8f16c2bfdbf489d7bace97c68f0fb29e9a5d Mon Sep 17 00:00:00 2001 From: HarrySeop Date: Tue, 5 Aug 2025 02:32:09 +0900 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=8E=A8=20[#263]=20Style:=20=EC=84=9C?= =?UTF-8?q?=EB=B9=84=EC=8A=A4=20=EC=B5=9C=EC=86=8C=20=EB=84=88=EB=B9=84=20?= =?UTF-8?q?=EC=A7=80=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/what-today/src/layouts/DefaultLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/what-today/src/layouts/DefaultLayout.tsx b/apps/what-today/src/layouts/DefaultLayout.tsx index 7ba80257..45083375 100644 --- a/apps/what-today/src/layouts/DefaultLayout.tsx +++ b/apps/what-today/src/layouts/DefaultLayout.tsx @@ -17,7 +17,7 @@ export default function DefaultLayout() { const floatingButtonClass = !isDesktop && isActivityDetailPage ? 'bottom-160' : undefined; return ( -
+
From 22caeaf6afe1a1411d34a805f9044db58bf1f7ee Mon Sep 17 00:00:00 2001 From: HarrySeop Date: Tue, 5 Aug 2025 02:33:09 +0900 Subject: [PATCH 4/5] =?UTF-8?q?=F0=9F=8E=A8=20[#263]=20Style:=20=ED=91=B8?= =?UTF-8?q?=ED=84=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../design-system/src/components/Footer.tsx | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/packages/design-system/src/components/Footer.tsx b/packages/design-system/src/components/Footer.tsx index 149bd186..17f52c39 100644 --- a/packages/design-system/src/components/Footer.tsx +++ b/packages/design-system/src/components/Footer.tsx @@ -37,7 +37,28 @@ export default function Footer() {
-

© CODEIT FE 15

+

+ + 지현 + + | + + 태일 + + | + + 지우 + + | + + 지섭 + +

From 6b2a570fff713069b22a2a19aa2d33f74f6f5ffb Mon Sep 17 00:00:00 2001 From: HarrySeop Date: Tue, 5 Aug 2025 03:09:07 +0900 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=8E=A8=20[#263]=20Style:=20=EB=A7=88?= =?UTF-8?q?=EC=9D=B4=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=95=84=EC=9B=83=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/what-today/src/components/MypageSidebar.tsx | 2 +- apps/what-today/src/layouts/DefaultLayout.tsx | 4 ++-- apps/what-today/src/layouts/Mypage.tsx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/what-today/src/components/MypageSidebar.tsx b/apps/what-today/src/components/MypageSidebar.tsx index 3cbebd14..e2779e4a 100644 --- a/apps/what-today/src/components/MypageSidebar.tsx +++ b/apps/what-today/src/components/MypageSidebar.tsx @@ -56,7 +56,7 @@ export default function MypageSidebar({ onLogoutClick, onClick, isOpen }: Mypage