"use client"; import Link from "next/link"; import { Globe2, Map } from "lucide-react"; import { cn } from "@/lib/utils"; const continents = [ { slug: "asia", label: "Asia" }, { slug: "europe", label: "Europe" }, { slug: "americas", label: "Americas" }, { slug: "africa", label: "Africa" }, { slug: "oceania", label: "Oceania" }, ]; interface ViewSwitcherProps { activeContinent?: string; } export function ViewSwitcher({ activeContinent }: ViewSwitcherProps) { return (
Global {continents.map((c) => ( {c.label} ))}
); }