diff --git a/src/components/sections/BespokeExperiencesSection.tsx b/src/components/sections/BespokeExperiencesSection.tsx new file mode 100644 index 0000000..1fac7dd --- /dev/null +++ b/src/components/sections/BespokeExperiencesSection.tsx @@ -0,0 +1,74 @@ +'use client' + +import Image from 'next/image' +import { MapPin, Soup, Wine } from 'lucide-react' + +export default function BespokeExperiencesSection() { + const experiences = [ + { + title: 'Private Game Drives', + icon: MapPin, + description: 'Venture before dawn in an open Land Cruiser with a tracker who knows every spoor. Witness the predators return, the herds stir, and the sun paint the escarpment gold — without another vehicle in sight.', + image: 'https://images.pexels.com/photos/20179668/pexels-photo-20179668.jpeg?auto=compress&cs=tinysrgb&h=350', + tag: 'Signature' + }, + { + title: 'Bush Spa Rituals', + icon: Soup, + description: 'Indulge in treatments using indigenous botanicals — marula oil, rooibos, and African potato. Your therapist sets up on a sala overlooking the dry riverbed; the only soundtrack is the wind in the knobthorn trees.', + image: 'https://images.pexels.com/photos/16448674/pexels-photo-16448674.jpeg?auto=compress&cs=tinysrgb&h=350', + tag: 'Wellness' + }, + { + title: 'Starlit Dining', + icon: Wine, + description: "Our Michelin-trained chef curates a menu drawn from the region's bounty — game, foraged herbs, and heirloom vegetables. Dinner is served beneath the Southern Cross, with lanterns and a crackling fire.", + image: 'https://images.pexels.com/photos/7766481/pexels-photo-7766481.jpeg?auto=compress&cs=tinysrgb&h=350', + tag: 'Culinary' + } + ] + + return ( +
+
+
+

+ Tailor each day to your pulse +

+

+ No two stays are alike. Select from our signature encounters — or let us design a journey that only you will ever experience. +

+
+ +
+ {experiences.map((exp, i) => { + const Icon = exp.icon + return ( +
+
+ {exp.title} +
+ {exp.tag} +
+
+
+
+ +

{exp.title}

+
+

{exp.description}

+
+
+ ) + })} +
+
+
+ ) +} \ No newline at end of file