"use client" import { X } from "lucide-react" import { cn } from "@/lib/utils" import Link from "next/link" interface MobileSidebarProps { isOpen: boolean onClose: () => void } export default function MobileSidebar({ isOpen, onClose }: MobileSidebarProps) { return (