Unpublish /landscape for now

Redirects to home, drops it from nav, and removes the dangling exec-summary
link. Content stays in the file (not deleted) for an easy revert later.
This commit is contained in:
2026-07-06 17:57:37 -04:00
parent bbdef0faa6
commit 7e1f1d6388
3 changed files with 7 additions and 11 deletions
+1 -2
View File
@@ -1,7 +1,7 @@
"use client";
import { useState } from "react";
import { FileText, Home, Layers, Menu, X } from "lucide-react";
import { FileText, Home, Menu, X } from "lucide-react";
import Link from "next/link";
import { usePathname } from "next/navigation";
@@ -11,7 +11,6 @@ import { cn } from "~/lib/utils";
const navLinks = [
{ href: "/", label: "About", icon: Home },
{ href: "/executive-summary", label: "Summary", icon: FileText },
{ href: "/landscape", label: "Landscape", icon: Layers },
];
export function SiteHeader() {