"use client"; import { Menu, Search } from "lucide-react"; import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import Link from "next/link"; import Image from "next/image"; const navItems = [ { label: "BERANDA", href: "/", active: true }, { label: "BERITA TERKINI", href: "/category/latest-news" }, { label: "BERITA POPULER", href: "/category/popular-news" }, { label: "DAMAI INDONESIAKU", href: "/category/peace-indonesia" }, { label: "JAGA NEGERI", href: "/category/guard-the-country" }, { label: "BERITA OPINI", href: "/category/opinion-news" }, ]; export default function Navbar() { return (
Kebaikan Indonesia
); }