From 9cdead41bce8c8af93778ef75a13813e97832ea9 Mon Sep 17 00:00:00 2001 From: GEORGIOS MOYSIADIS <145147138+georgemois23@users.noreply.github.com> Date: Thu, 26 Sep 2024 18:00:41 +0300 Subject: [PATCH] Update RestaurantSchedule.js The dinner hours at the restaurant have changed from 18:00-20:00 to the new hours of 17:30-19:30. --- src/assets/data/RestaurantSchedule.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/assets/data/RestaurantSchedule.js b/src/assets/data/RestaurantSchedule.js index cfed0d9..86a98f8 100644 --- a/src/assets/data/RestaurantSchedule.js +++ b/src/assets/data/RestaurantSchedule.js @@ -24,22 +24,22 @@ export const RESTAURANT_HOURS = { for_dinner: { on_weekdays: { start: { - hours: 18, - minutes: 0, + hours: 17, + minutes: 30, }, end: { - hours: 20, - minutes: 0, + hours: 19, + minutes: 30, }, }, on_weekend: { start: { - hours: 18, - minutes: 0, + hours: 17, + minutes: 30, }, end: { - hours: 20, - minutes: 0, + hours: 19, + minutes: 30, }, }, }, @@ -71,12 +71,12 @@ export const schedule = { weekdays: { breakfast: { start: "08:00", end: "09:30" }, lunch: { start: "12:30", end: "15:30" }, - dinner: { start: "18:00", end: "20:00" }, + dinner: { start: "17:30", end: "19:30" }, }, weekendsAndHolidays: { breakfast: { start: "08:00", end: "09:30" }, lunch: { start: "13:00", end: "15:30" }, - dinner: { start: "18:00", end: "20:00" }, + dinner: { start: "17:30", end: "19:30" }, }, };