12 lines
344 B
TypeScript

"use client";
export default function HeaderAgenda() {
return (
<header className="border-b bg-background border-border">
<div className="mx-auto w-full max-w-7xl px-8 py-3 flex items-center justify-between">
<h1 className="text-[18px] font-semibold text-foreground">Novo Agendamento</h1>
</div>
</header>
);
}