"use client"; import { Search } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default function Navbar() { const pathname = usePathname(); const isActive = (href: any) => { return pathname === href || pathname.startsWith(href + "/"); }; return (
{/* Left: Logo */}
Kritik Tajam Logo
{/* Social Icons */}
{/* Middle Menu */}
{/* BURGER BUTTON (mobile menu) */}
); }