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}

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