--- // src/components/Header.astro import ThemeToggler from './ThemeToggler.astro'; // Define navigation items with proper URLs const navItems = [ { name: 'Home', url: '/' }, { name: 'Blog', url: '/blog' }, { name: 'Projects', url: '/projects' }, { name: 'Home Lab', url: 'https://argobox.com' }, { name: 'Resources', url: '/resources' }, { name: 'About', url: 'https://laforceit.com' }, { name: 'Contact', url: 'https://laforceit.com/index.html#contact' } ]; // Get current URL path for active nav item highlighting const currentPath = Astro.url.pathname; ---