import React, { useState } from 'react'; import { Menu, X, Moon, Sun, Activity } from 'lucide-react'; import { useTheme } from '../context/ThemeContext'; export function Header() { const [isMenuOpen, setIsMenuOpen] = useState(false); const { isDark, toggleTheme } = useTheme(); const navItems = [ { label: 'Solutions', href: '#solutions' }, { label: 'Dashboard', href: '#dashboard' }, { label: 'Integrations', href: '#integrations' }, { label: 'Analytics', href: '#analytics' }, ]; return (
{/* Logo */}

Health Matrix

AI Command Center

{/* Desktop Navigation */} {/* Theme Toggle & Mobile Menu */}
{/* Mobile menu button */}
{/* Mobile Navigation */} {isMenuOpen && (
)}
); }