"use client"; import { Facebook, Instagram, Search, Twitter, Youtube } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; import { Button } from "../ui/button"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; // helper opsional, bisa hapus kalau tidak ada export default function Navbar() { const pathname = usePathname(); const navItems = [ { label: "HOME", href: "/" }, { label: "BERITA TERKINI", href: "/category/latest-news" }, { label: "BERITA POPULER", href: "/category/popular-news" }, { label: "JAGA NEGERI", href: "/category/protect" }, { label: "BERITA OPINI", href: "/category/opinion-news" }, ]; return (