-
- saturday
-
-
- 10:00 AM to 10:00 PM
-
+ {days.map((day, index) => {
+ const isToday = index === todayIndex;
+ const { shift1, shift2 } = dayTimes[index];
+ const hasShifts = shift1 || shift2;
+ const timeDisplay = shift2
+ ? `${shift1}, ${shift2}`
+ : shift1 || t("menu.closed");
+
+ return (
+
+
+ {t(`menu.${day}`)}
+
+
+ {timeDisplay}
+
+
+ );
+ })}
+