"use client"; import { useState } from "react"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { siteConfig } from "@/lib/site-config"; export default function Navbar() { const [open, setOpen] = useState(false); const { phone, phoneRaw, nav } = siteConfig; const pathname = usePathname(); return ( ); }