diff --git a/LOG.md b/LOG.md
index c1bd707..f605ac1 100644
--- a/LOG.md
+++ b/LOG.md
@@ -1,5 +1,13 @@
# Work Log
+## 2026-06-07
+
+- Simplified the macOS-inspired layout by removing duplicated navigation surfaces: the desktop shortcut icon layer, the home page's inner Finder sidebar, and app navigation links from the system menu bar.
+- Reworked the global sidebar into a cleaner library panel focused on profile, search, and categories, with a quieter compact profile row and no duplicated app shortcuts.
+- Kept app-level movement in the Dock, category/search movement in the sidebar, and current-context/status information in the menu bar so each shell area has a clearer role.
+- Validation: `npm run lint` passed and `npm run build` passed. In-app browser verification on `http://localhost:3112/` confirmed no horizontal overflow, no desktop shortcut duplicates, the simplified home window, the Korean sidebar header, and no browser console warnings/errors. The local backend remained unavailable, so the home page showed empty post states.
+- Recommended next task: test the simplified sidebar with real production categories and long category names, then tune category row spacing if the populated tree feels too dense.
+
## 2026-06-06
- Reworked the macOS-inspired shell into a fuller desktop illusion: full-width system menu bar, floating Finder-style sidebar window, viewport-centered Dock, desktop wallpaper layers, and desktop shortcut icons for major destinations.
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0a5eba4..269bdce 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -6,7 +6,6 @@ import {
ChevronRight,
Clock,
FileText,
- FolderOpen,
HardDrive,
Search,
TrendingUp,
@@ -273,31 +272,6 @@ function PostListPanel({
);
}
-function FinderLocation({
- href,
- icon,
- label,
- meta,
-}: {
- href: string;
- icon: ReactNode;
- label: string;
- meta: string;
-}) {
- return (
-
- {icon}
- {label}
-
- {meta}
-
-
- );
-}
-
export default async function Home({ searchParams }: HomePageProps) {
const keyword = await getSearchKeyword(searchParams);
@@ -325,8 +299,8 @@ export default async function Home({ searchParams }: HomePageProps) {