"use client" import Link from "next/link"; import { usePathname } from "next/navigation"; export const Navbar = () => { const pathname = usePathname(); const navLinks = [ { id: 1, icon: "material-symbols--home-outline", iconActive: "material-symbols--home", title: "Домашняя", href: "/", }, { id: 2, icon: "material-symbols--search", iconActive: "material-symbols--search", title: "Поиск", href: "/search", }, { id: 3, icon: "material-symbols--bookmarks-outline", iconActive: "material-symbols--bookmarks", title: "Закладки", href: "/bookmarks", }, { id: 4, icon: "material-symbols--favorite-outline", iconActive: "material-symbols--favorite", title: "Избранное", href: "/favorites", }, { id: 5, icon: "material-symbols--history", iconActive: "material-symbols--history", title: "История", href: "/history", }, ]; return (
); };