'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { Home, Flame, History, Tv, User } from 'lucide-react'; export default function BottomNav() { const pathname = usePathname(); // Hide on admin, login pages if (pathname?.startsWith('/admin') || pathname?.startsWith('/login') || pathname?.startsWith('/dracin/watch')) { return null; } const isActive = (path: string) => pathname === path; const navItems = [ { name: 'Trending', href: '/trending', icon: Flame }, { name: 'Dracin', href: '/dracin', icon: Tv }, { name: 'Home', href: '/', icon: Home }, { name: 'History', href: '/history', icon: History }, { name: 'Profile', href: '/profile', icon: User }, ]; return (