"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import clsx from "clsx"; const links = [ { href: "/", label: "Start" }, { href: "/kennzeichen", label: "Datenbank" }, { href: "/diplomatenkennzeichen",label: "Diplomaten" }, { href: "/sammlung", label: "Sammlung" }, { href: "/blog", label: "Blog" }, ]; export default function Nav() { const path = usePathname(); return (
Kennzeichensammler
); }