import { useState } from 'react'; import Link from 'next/link'; import Image from 'next/image'; import { Bars3Icon as MenuIcon, XMarkIcon as XIcon } from '@heroicons/react/24/outline'; export default function Navbar() { const [isOpen, setIsOpen] = useState(false); const navItems = [ { name: 'Start', href: '/' }, { name: 'Über uns', href: '/about' }, { name: 'Projekte', href: '/projects' }, { name: 'DevLog', href: '/devlog' }, { name: 'Kontakt', href: '/contact' }, ]; return ( ); }