"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; export function BottomNav() { const pathname = usePathname(); const onCodrop = pathname?.startsWith("/codrop"); const onRubens = pathname?.startsWith("/rubens"); const onHelmet = !onCodrop && !onRubens; return ( ); }