REMOVED - Drop Home dock item since the logo already links home
CI / quality (push) Canceled after 0s

This commit is contained in:
moh
2026-09-20 19:42:56 +02:00
parent 4017ba3b72
commit 572329097c
3 changed files with 2 additions and 26 deletions
+2 -2
View File
@@ -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 },