"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { cn } from "@/lib/utils" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Menu } from "lucide-react" import { useSidebar } from "@/context/SidebarContext" import strings from "@/strings.json" import config from "@/config.json" export function Navbar() { const pathname = usePathname() const { toggleSidebar } = useSidebar() return (
) }