diff --git a/src/components/Header.astro b/src/components/Header.astro index 95c185f..165670c 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -12,12 +12,12 @@ const { class: className } = Astro.props; const navLinks = [ { name: 'Home', href: '/' }, + { name: 'WRNexus', href: 'https://wrnexus.com/', external: true }, { name: 'About', href: '/about' }, { name: 'Services', href: '/services' }, { name: 'Portfolio', href: '/portfolio' }, { name: 'Blog', href: '/blog' }, { name: 'Contact', href: '/contact' }, - { name: 'WRNexus', href: 'https://wrnexus.com/', external: true }, ]; const currentPath = Astro.url.pathname;