import Link from 'next/link'; import { Menu, X } from 'lucide-react'; import { useState } from 'react'; export default function Header() { const [isMenuOpen, setIsMenuOpen] = useState(false); const navigation = [ { name: 'Features', href: '#features' }, { name: 'Specifications', href: '#specs' }, { name: 'Applications', href: '#applications' }, { name: 'Documentation', href: '#docs' }, ]; return (
); }