+ {site.shifts.map((shift) => (
+
+
+
+ {format(new Date(shift.date), "EEEE d MMM", { locale: it })} • {shift.from} - {shift.to}
+
+
{shift.totalGuards} {shift.totalGuards === 1 ? "guardia" : "guardie"}
+
+
+ {shift.guards.map((guard, idx) => (
+
+ 👤 {guard.guardName} ({guard.badgeNumber}) - {guard.hours}h
+
+ ))}
+
+ {shift.vehicle && (
+
+ 🚗 {shift.vehicle.licensePlate} ({shift.vehicle.brand} {shift.vehicle.model})
+
+ )}
+