From 91bd5f6d9545900b57b3fc17a922e45470cb57f1 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Tue, 12 May 2026 10:06:00 -0400 Subject: [PATCH] Restore pre-codex nav (drop API/Python/Citations entries) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Codex's #37 added 'API', 'Python', and an 'About > Citations' sub-item to the local Header.tsx nav. Those entries weren't there pre-codex; the nav was Research / Model / About (Team, Supporters) / Donate. Keep the non-nav changes from #37: SITE_URL canonical → www, Turbopack root config, SEO/sitemap cleanups. Only the four NAV_ITEMS additions revert. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/components/Header.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/components/Header.tsx b/frontend/components/Header.tsx index 7246cb0..229f754 100644 --- a/frontend/components/Header.tsx +++ b/frontend/components/Header.tsx @@ -22,15 +22,12 @@ const FONT = "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sa const NAV_ITEMS = [ { label: 'Research', href: 'https://policyengine.org/us/research' }, { label: 'Model', href: 'https://policyengine.org/us/model' }, - { label: 'API', href: 'https://policyengine.org/us/api' }, - { label: 'Python', href: 'https://policyengine.org/us/python' }, { label: 'About', hasDropdown: true, items: [ { label: 'Team', href: 'https://policyengine.org/us/team' }, { label: 'Supporters', href: 'https://policyengine.org/us/supporters' }, - { label: 'Citations', href: 'https://policyengine.org/us/citations' }, ], }, { label: 'Donate', href: 'https://policyengine.org/us/donate' },