"use client"; import { RotateCcw } from "lucide-react"; import Link from "next/link"; import { usePathname, useRouter } from "next/navigation"; export default function HeaderAgenda() { const pathname = usePathname(); const router = useRouter(); const isAg = pathname?.startsWith("/agenda"); const isPr = pathname?.startsWith("/procedimento"); const isFi = pathname?.startsWith("/financeiro"); return (

Novo Agendamento

); }