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