diff --git a/src/components/sections/MasaiSuitesPromotionsSection.tsx b/src/components/sections/MasaiSuitesPromotionsSection.tsx new file mode 100644 index 0000000..730967b --- /dev/null +++ b/src/components/sections/MasaiSuitesPromotionsSection.tsx @@ -0,0 +1,53 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import Image from 'next/image' +import Link from 'next/link' + +export default function MasaiSuitesPromotionsSection() { + const { items, loading } = useEmDashContent('promotions') + + if (loading) return
+ if (items.length === 0) return null + + return ( +
+
+

Limited-time packages for extraordinary safaris

+

Curated seasonal offers crafted for the discerning traveller—book direct for exclusive perks.

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

{d.title}

+

{d.description}

+
+ {d.price && {d.price}} + + + +
+
+
+ ) + })} +
+
+
+ ) +}