From f477a334993ab3e135f90cd5a11ef8f66145e1bd Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 15 Jul 2026 09:25:28 +0000 Subject: [PATCH] Deploy --- .../sections/LodgeRhythmsSection.tsx | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/components/sections/LodgeRhythmsSection.tsx diff --git a/src/components/sections/LodgeRhythmsSection.tsx b/src/components/sections/LodgeRhythmsSection.tsx new file mode 100644 index 0000000..a9bab16 --- /dev/null +++ b/src/components/sections/LodgeRhythmsSection.tsx @@ -0,0 +1,67 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import { Clock } from 'lucide-react' + +export default function LodgeRhythmsSection() { + const { items, loading } = useEmDashContent('business_hours') + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( +
+
+

+ Daily Rhythms of the Lodge +

+

+ From sunrise game drives to evening boma dinners — plan your immersion in the bush rhythm. +

+
+ {items.map((item) => { + const d = item.data as { + day_of_week?: string + open_time?: string + close_time?: string + is_closed?: boolean + note?: string + } + return ( +
+
+ + {d.day_of_week} +
+
+ {d.is_closed ? ( + Closed + ) : ( + + {d.open_time} – {d.close_time} + + )} + {d.note && ( +

{d.note}

+ )} +
+
+ ) + })} +
+
+
+ ) +}