'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import ThemeSwitcher from './ThemeSwitcher'; import { MagnifyingGlassIcon, UserCircleIcon } from '@heroicons/react/24/outline'; export default function Navbar() { const pathname = usePathname(); const navItems = [ { href: '/parts', label: 'Parts Catalog' }, { href: '/build', label: 'Build Checklist' }, { href: '/builds', label: 'My Builds' }, ]; return ( <> {/* Top Bar */}
Pew Builder
{/* Subnav */} ); }