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

+ Exclusive Bush Retreat Offers +

+

+ Seasonal packages designed for discovery and indulgence, crafted to make your Zulu escape unforgettable. +

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

{d.title}

+

{d.description}

+ {d.price && ( +

{d.price}

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