---
// 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: 'Tech Stack', url: '/tech-stack' },
{ name: 'Home Lab', url: '/homelab' }, // Updated URL
{ name: 'Resources', url: '/resources' },
{ name: 'About', url: 'https://ArgoBox.com' },
{ name: 'Contact', url: 'https://ArgoBox.com/index.html#contact' }
];
// Get current URL path for active nav item highlighting
const currentPath = Astro.url.pathname;
---