"use client"; import { Activity, Globe2, Map } from "lucide-react"; import { useTranslations } from "next-intl"; import { Link } from "@/i18n/navigation"; import { cn } from "@/lib/utils"; import { LanguageSwitcher } from "./language-switcher"; interface NavbarProps { activeView?: "globe" | "map"; } export function Navbar({ activeView = "globe" }: NavbarProps) { const t = useTranslations("navbar"); return ( ); }