"use client"; import { Slot } from "@radix-ui/react-slot"; import { cn } from "@rallly/ui"; import { Button } from "@rallly/ui/button"; import { BarChart2Icon, CalendarIcon, HomeIcon, MenuIcon, PlusIcon, } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; function MobileNavigationIcon({ children }: { children: React.ReactNode }) { return ( {children} ); } function MobileNavigationItem({ children, href, }: { href: string; children?: React.ReactNode; }) { const pathname = usePathname(); return ( {children} ); } export function MobileNavigation() { return (
); }