"use client" import Link from "next/link" import { Button } from "@/components/ui/button" import { X } from "lucide-react" import { useSidebar } from "@/context/SidebarContext" import config from "@/config.json" import strings from "@/strings.json" export function MobileSidebar() { const { isOpen, toggleSidebar } = useSidebar() return ( ) }