From 15818672c61350b21deb50a572bed0b49820e0ac Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 15 Jul 2026 09:25:27 +0000 Subject: [PATCH] Deploy --- .../sections/IsithombeGallerySection.tsx | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/components/sections/IsithombeGallerySection.tsx diff --git a/src/components/sections/IsithombeGallerySection.tsx b/src/components/sections/IsithombeGallerySection.tsx new file mode 100644 index 0000000..5cae0c1 --- /dev/null +++ b/src/components/sections/IsithombeGallerySection.tsx @@ -0,0 +1,64 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' + +export default function IsithombeGallerySection() { + const { items, loading } = useEmDashContent('gallery') + + if (loading) { + return ( +
+
+
+ ) + } + + if (items.length === 0) return null + + return ( +
+
+

+ Visual Stories from the Bush +

+

+ From intimate suite details to sweeping bushveld sunsets — each image captures the soul of Zulu Lodge. +

+
+ {items.map((item) => { + const d = item.data as { + title?: string + description?: string + image?: string + } + return ( +
+ {d.title +
+
+

{d.title}

+ {d.description && ( +

{d.description}

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