From 94ec5ada95fd2dac01b8c7bbc5556a67dae1194a Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 3 Feb 2026 02:04:56 +0000 Subject: [PATCH] Add Cynthia Trenshaw Poetry link to navigation - Add external link to cynthia-staging.jeffemmett.com - Support external links in both desktop and mobile nav - Opens in new tab with proper rel attributes Co-Authored-By: Claude Opus 4.5 --- frontend/src/components/navigation.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/frontend/src/components/navigation.tsx b/frontend/src/components/navigation.tsx index 27d40fb..f6a30a6 100644 --- a/frontend/src/components/navigation.tsx +++ b/frontend/src/components/navigation.tsx @@ -28,6 +28,7 @@ const navLinks = [ { href: '/about', label: 'About' }, { href: '/contact', label: 'Contact' }, { href: '/subscribe', label: 'Subscribe' }, + { href: 'https://cynthia-staging.jeffemmett.com', label: 'Cynthia Trenshaw Poetry', external: true }, ]; const socialLinks = [ @@ -173,6 +174,16 @@ export function Navigation() { )} + ) : 'external' in link && link.external ? ( + + {link.label} + ) : ( + ) : 'external' in link && link.external ? ( + setMobileMenuOpen(false)} + > + {link.label} + ) : (