From 5e37995fbb76876ff66ef5208225ea380b48a661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=9B=90=EC=97=BD?= Date: Fri, 29 May 2026 11:29:28 +0900 Subject: [PATCH] . --- LOG.md | 1 + src/app/page.tsx | 23 +++++++++++++---------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/LOG.md b/LOG.md index 6fa9f8c..46526d6 100644 --- a/LOG.md +++ b/LOG.md @@ -8,6 +8,7 @@ - Refined the desktop layout after review: the sidebar can now collapse on PC, the main window width is more consistent across dashboard/list/reader/chess/admin views, the sidebar archive shortcut was removed, and the top menu now uses WYPark branding with GitHub/email links plus theme switching only. - Moved auth/admin/write/logout actions into the Dock and changed category windows/menu labels to show the actual category name instead of Finder/posts copy. - Tuned the follow-up layout: main content now centers inside the area remaining after the desktop sidebar, sidebar GitHub/email shortcuts were removed, top-bar GitHub/email links now sit as plain left-side menu items, and the home labels were simplified to 홈/WYPark. +- Softened the home dashboard inner popular/latest sections so they no longer render as nested macOS windows with traffic-light controls; they now read as embedded dashboard panels inside the WYPark window. - Validation: `npm run lint` passed, `npm run build` passed. The build logged a sitemap fetch warning because the backend API at the local default was not reachable, but the command completed successfully. - Browser verification: previously started this app on `http://localhost:3100` because ports 3000 and 3001 were already occupied; confirmed desktop background gradients, menu bar, Dock, and window surfaces on `/`, `/archive`, and `/login`. For this follow-up, the dev/standalone server started successfully in foreground but exited when launched as a background non-interactive process, so browser verification was skipped after lint/build passed. - Recommended next task: review the remaining older Korean strings in admin/editor flows and normalize any mojibake that predates this redesign. diff --git a/src/app/page.tsx b/src/app/page.tsx index b63ad0b..1389323 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -193,20 +193,22 @@ function PostListPanel({ return ( + showTrafficLights={false} + className="shadow-none" + bodyClassName="overflow-hidden" + > +
+

{icon} - {title} - - )} - controls={( - + {title} +

+ 전체 보기 - )} - bodyClassName="p-5 md:p-6" - > +
+ +
{posts.length > 0 ? (
{posts.map((post, index) => ( @@ -221,6 +223,7 @@ function PostListPanel({ ) : ( )} +
); }