New booking panel

This commit is contained in:
Jose Selesan
2026-05-05 10:16:38 -03:00
parent 546a020003
commit c089215835
19 changed files with 1991 additions and 1072 deletions

View File

@@ -0,0 +1,18 @@
import { useBooking } from '../booking-provider';
export function BookingHeader() {
const { complex } = useBooking();
return (
<section>
<div>
<h1 className="text-3xl font-semibold tracking-normal text-foreground">
Panel de Reservas
</h1>
<p className="mt-2 text-sm text-muted-foreground">
Gestiona las canchas de {complex.complexName}
</p>
</div>
</section>
);
}