"use client"; import { cn } from "@repo/shared-components"; import { ArrowLeftRight, ExternalLinkIcon, Plane, Radar, Workflow } from "lucide-react"; import { useSession } from "next-auth/react"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default function ModeSwitchDropdown({ className, btnClassName, }: { className?: string; btnClassName?: string; }) { const path = usePathname(); const session = useSession(); return (