"use client"; import Link from "next/link"; import { Activity, Globe2, Map } from "lucide-react"; import { cn } from "@/lib/utils"; interface NavbarProps { activeView?: "globe" | "map"; } export function Navbar({ activeView = "globe" }: NavbarProps) { return ( ); }