From d6d4f6855826f06f261cb2681cb8d58c3e0f74ad Mon Sep 17 00:00:00 2001 From: Namgyeon Date: Sun, 17 Aug 2025 17:36:15 +0900 Subject: [PATCH 1/4] =?UTF-8?q?design:=20(auth)=EB=A0=88=EC=9D=B4=EC=95=84?= =?UTF-8?q?=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 --- src/app/(before-login)/(auth)/layout.tsx | 36 ++++++++++++------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/app/(before-login)/(auth)/layout.tsx b/src/app/(before-login)/(auth)/layout.tsx index 06e1950..7768bb5 100644 --- a/src/app/(before-login)/(auth)/layout.tsx +++ b/src/app/(before-login)/(auth)/layout.tsx @@ -7,24 +7,24 @@ export default function AuthLayout({ children: React.ReactNode; }>) { return ( -
-
-
- - 로고 이미지 - -

- 오늘도 만나서 반가워요! -

-
-
{children}
-
+
+
+ + 로고 이미지 + +

+ 오늘도 만나서 반가워요! +

+
+
{children}
); } From fabdb7aaf0eb62516024237251038c74979fb22d Mon Sep 17 00:00:00 2001 From: Namgyeon Date: Sun, 17 Aug 2025 18:19:07 +0900 Subject: [PATCH 2/4] =?UTF-8?q?design:=ED=97=A4=EB=8D=94=20=EC=9C=A0?= =?UTF-8?q?=EC=A0=80=EC=9D=B4=EB=A6=84=20=EB=AA=A8=EB=B0=94=EC=9D=BC?= =?UTF-8?q?=EC=82=AC=EC=9D=B4=EC=A6=88=EC=97=90=EC=84=9C=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/dashboard/header/DashBoardInfo.tsx | 4 +++- src/components/dashboard/header/Header.tsx | 6 +++--- src/components/dashboard/header/HeaderButton.tsx | 6 +++--- src/components/ui/Dropdown/index.tsx | 1 + 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/src/components/dashboard/header/DashBoardInfo.tsx b/src/components/dashboard/header/DashBoardInfo.tsx index c46d9d0..de37942 100644 --- a/src/components/dashboard/header/DashBoardInfo.tsx +++ b/src/components/dashboard/header/DashBoardInfo.tsx @@ -25,7 +25,9 @@ const DashBoardInfo = ({ dashboardId }: { dashboardId: number }) => { 초대하기 - +
+ +
{ return dashboardData?.title || "내 대시보드"; }; return ( -
+
{getPageTitle()}
-
+
{dashboardData && (
)} -
+
diff --git a/src/components/dashboard/header/HeaderButton.tsx b/src/components/dashboard/header/HeaderButton.tsx index b3fa113..a29616c 100644 --- a/src/components/dashboard/header/HeaderButton.tsx +++ b/src/components/dashboard/header/HeaderButton.tsx @@ -11,16 +11,16 @@ interface HeaderButtonProps extends ButtonHTMLAttributes { const HeaderButton = ({ children, href, icon, onClick }: HeaderButtonProps) => { return ( -
+
{`${icon} -
+
{children}
diff --git a/src/components/ui/Dropdown/index.tsx b/src/components/ui/Dropdown/index.tsx index d84510b..50f4c6b 100644 --- a/src/components/ui/Dropdown/index.tsx +++ b/src/components/ui/Dropdown/index.tsx @@ -41,6 +41,7 @@ const Dropdown = ({ From 2347959c2c5f80406dc24a1042ded69e10009bec Mon Sep 17 00:00:00 2001 From: Namgyeon Date: Sun, 17 Aug 2025 21:26:35 +0900 Subject: [PATCH 3/4] =?UTF-8?q?design:=20=EB=8C=80=EC=8B=9C=EB=B3=B4?= =?UTF-8?q?=EB=93=9C=20=ED=97=A4=EB=8D=94=20css=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(after-login)/dashboard/[id]/page.tsx | 6 +++++- src/components/columns/Column.tsx | 4 ++-- src/components/columns/ColumnList.tsx | 4 ++-- src/components/dashboard/header/DashBoardInfo.tsx | 2 +- src/components/dashboard/header/Header.tsx | 4 ++-- src/components/dashboard/header/Profile.tsx | 2 +- 6 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/app/(after-login)/dashboard/[id]/page.tsx b/src/app/(after-login)/dashboard/[id]/page.tsx index 32e1e02..b1ca613 100644 --- a/src/app/(after-login)/dashboard/[id]/page.tsx +++ b/src/app/(after-login)/dashboard/[id]/page.tsx @@ -49,7 +49,11 @@ export async function generateMetadata({ } const DashboardDetailPage = () => { - return ; + return ( +
+ +
+ ); }; export default DashboardDetailPage; diff --git a/src/components/columns/Column.tsx b/src/components/columns/Column.tsx index 803609a..c966387 100644 --- a/src/components/columns/Column.tsx +++ b/src/components/columns/Column.tsx @@ -10,7 +10,7 @@ interface ColumnProps { const Column = ({ column }: ColumnProps) => { return ( -
+
@@ -18,7 +18,7 @@ const Column = ({ column }: ColumnProps) => {
{ return ( -
+
{data?.data.map((column) => ( ))} -
+
diff --git a/src/components/dashboard/header/DashBoardInfo.tsx b/src/components/dashboard/header/DashBoardInfo.tsx index de37942..ec3c8dd 100644 --- a/src/components/dashboard/header/DashBoardInfo.tsx +++ b/src/components/dashboard/header/DashBoardInfo.tsx @@ -25,7 +25,7 @@ const DashBoardInfo = ({ dashboardId }: { dashboardId: number }) => { 초대하기
-
+
diff --git a/src/components/dashboard/header/Header.tsx b/src/components/dashboard/header/Header.tsx index 9e8735f..cc56c53 100644 --- a/src/components/dashboard/header/Header.tsx +++ b/src/components/dashboard/header/Header.tsx @@ -22,13 +22,13 @@ const Header = () => {
{getPageTitle()}
-
+
{dashboardData && (
)} -
+
diff --git a/src/components/dashboard/header/Profile.tsx b/src/components/dashboard/header/Profile.tsx index 63f33ce..c6c95c5 100644 --- a/src/components/dashboard/header/Profile.tsx +++ b/src/components/dashboard/header/Profile.tsx @@ -51,7 +51,7 @@ const Profile = () => { }, { label: "로그아웃", onClick: handleLogout }, ]} - className="hover:bg-transparent" + className="md:flex items-center hidden hover:bg-transparent" optionClassName="px-8 py-3" />
From b4c5806ed118f53e060171b9862b6cf00761186c Mon Sep 17 00:00:00 2001 From: Namgyeon Date: Sun, 17 Aug 2025 21:27:37 +0900 Subject: [PATCH 4/4] =?UTF-8?q?design:=20=EB=8C=80=EC=8B=9C=EB=B3=B4?= =?UTF-8?q?=EB=93=9C=20=ED=97=A4=EB=8D=94=20css=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/dashboard/header/Header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/header/Header.tsx b/src/components/dashboard/header/Header.tsx index cc56c53..3ca98ea 100644 --- a/src/components/dashboard/header/Header.tsx +++ b/src/components/dashboard/header/Header.tsx @@ -19,7 +19,7 @@ const Header = () => { }; return (
-
+
{getPageTitle()}