From ec9511ecd28c8aad59c549a43c07ec9c2f708833 Mon Sep 17 00:00:00 2001 From: offinon Date: Thu, 26 Feb 2026 17:08:23 +0000 Subject: [PATCH] =?UTF-8?q?=EB=B0=98=EC=9D=91=ED=98=95=20=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=95=84=EC=9B=83=20=EC=88=98=EC=A0=95=20=EB=B0=8F=20?= =?UTF-8?q?=EC=8B=9C=EC=8A=A4=ED=85=9C=20=EC=BB=AC=EB=9F=AC=20=ED=8F=B0?= =?UTF-8?q?=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(app)/cancellation/page.tsx | 10 +- src/app/(app)/orders/page.tsx | 24 ++--- src/app/(app)/page.tsx | 112 ++++++++++++---------- src/app/(app)/products/ProductsClient.tsx | 2 +- src/app/(app)/users/UsersClient.tsx | 30 +++--- 5 files changed, 94 insertions(+), 84 deletions(-) diff --git a/src/app/(app)/cancellation/page.tsx b/src/app/(app)/cancellation/page.tsx index 928f4d3..083cc3e 100644 --- a/src/app/(app)/cancellation/page.tsx +++ b/src/app/(app)/cancellation/page.tsx @@ -19,7 +19,7 @@ export default async function CancellationPage() { return ( <> -
+
Cancellation
@@ -67,7 +67,7 @@ export default async function CancellationPage() { {cancelledOrders.length > 0 ? ( cancelledOrders.map((order) => ( - {order.id} + {order.id} {/* {order.date} */} {order.cancellationDate} {/* 처리 일자 추가 (값이 없으면 '-' 출력) */} @@ -77,17 +77,17 @@ export default async function CancellationPage() {
- {order.customer.name} + {order.customer.name}
{order.event.productType}
- {order.event.name} + {order.event.name}
- {order.amount.krw} + {order.amount.krw} -
- Overview +
+ Overview
- - - - - +
+
+ +
+ diff --git a/src/app/(app)/page.tsx b/src/app/(app)/page.tsx index 94864b5..ce15c94 100644 --- a/src/app/(app)/page.tsx +++ b/src/app/(app)/page.tsx @@ -1,6 +1,5 @@ import { Stat } from '@/app/stat' -import { Divider } from '@/components/divider' -import { Heading, Subheading } from '@/components/heading' +import { Heading } from '@/components/heading' import { Select } from '@/components/select' import { getRecentOrders } from '@/data' @@ -9,63 +8,70 @@ export default async function Home() { return ( <> - Overview -
- Orders Overview -
- +
+
+
+ Orders Overview +
+ +
+
+
+ + + + +
+ {/* */}
-
-
- - - - -
- {/* */} -
- Products Overview -
- +
+
+ Products Overview +
+ +
+
+
+ + + + +
+ {/* */}
-
-
- - - - -
- {/* */} -
- Users Overview -
- +
+
+ Users Overview +
+ +
+
+
+ + + + +
+ {/* */}
-
- - - - -
- {/* */} ) } diff --git a/src/app/(app)/products/ProductsClient.tsx b/src/app/(app)/products/ProductsClient.tsx index 638945d..154186f 100644 --- a/src/app/(app)/products/ProductsClient.tsx +++ b/src/app/(app)/products/ProductsClient.tsx @@ -32,7 +32,7 @@ export default function ProductsClient({ products }: { products: any[] }) { return ( <> -
+
Products
diff --git a/src/app/(app)/users/UsersClient.tsx b/src/app/(app)/users/UsersClient.tsx index f633548..0c996db 100644 --- a/src/app/(app)/users/UsersClient.tsx +++ b/src/app/(app)/users/UsersClient.tsx @@ -12,7 +12,7 @@ import { DropdownMenu, DropdownSection, } from '@/components/dropdown' -import { Heading, Subheading } from '@/components/heading' +import { Heading } from '@/components/heading' import { Input, InputGroup } from '@/components/input' import { Link } from '@/components/link' import { @@ -43,8 +43,8 @@ export default function UsersClient({ initialUsers }: { initialUsers: any[] }) { return ( <> -
- Overview +
+ Overview
- - - - - ㄴ - - +
+
+ +
+ @@ -108,7 +110,7 @@ export default function UsersClient({ initialUsers }: { initialUsers: any[] }) { initials={!user.avatar ? user.name[0] : undefined} className="size-8" /> - {user.name} + {user.name}