"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default function HeaderAgenda() { const pathname = usePathname(); const isAg = pathname?.startsWith("/agenda"); return (

Novo Agendamento

); }