'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { Logo } from './Logo' const links = [ { href: '/', label: 'Start' }, { href: '/projekte', label: 'Projekte' }, { href: '/sicherheit', label: 'Sicherheit' }, { href: '/ueber', label: 'Ueber LEVIS' }, ] export function Navbar() { const pathname = usePathname() return ( ) }