From 572329097cc905318a8aeed4782c7249645fe171 Mon Sep 17 00:00:00 2001 From: moh Date: Sun, 20 Sep 2026 19:42:56 +0200 Subject: [PATCH] REMOVED - Drop Home dock item since the logo already links home --- components/layout/site-dock.tsx | 4 ++-- public/dock/home-active.svg | 12 ------------ public/dock/home.svg | 12 ------------ 3 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 public/dock/home-active.svg delete mode 100644 public/dock/home.svg diff --git a/components/layout/site-dock.tsx b/components/layout/site-dock.tsx index 399acb7..f256900 100644 --- a/components/layout/site-dock.tsx +++ b/components/layout/site-dock.tsx @@ -21,7 +21,7 @@ type SiteDockProps = { isSuperAdmin?: boolean; }; -type NavKey = "home" | "about" | "portfolio" | "products" | "contact"; +type NavKey = "about" | "portfolio" | "products" | "contact"; type NavItem = { key: NavKey; @@ -29,8 +29,8 @@ type NavItem = { disabled?: boolean; }; +// "Home" is intentionally omitted — the logo (first dock icon) is the home link. const navItems: NavItem[] = [ - { key: "home", path: "" }, { key: "about", path: "/about" }, { key: "portfolio", path: "/portfolio" }, { key: "products", path: "/products", disabled: true }, diff --git a/public/dock/home-active.svg b/public/dock/home-active.svg deleted file mode 100644 index d306722..0000000 --- a/public/dock/home-active.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/public/dock/home.svg b/public/dock/home.svg deleted file mode 100644 index 132727e..0000000 --- a/public/dock/home.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file