diff --git a/src/components/sections/VendaGuestStoriesSection.tsx b/src/components/sections/VendaGuestStoriesSection.tsx new file mode 100644 index 0000000..0fd9733 --- /dev/null +++ b/src/components/sections/VendaGuestStoriesSection.tsx @@ -0,0 +1,52 @@ +'use client' + +export default function VendaGuestStoriesSection() { + const stories = [ + { + initials: "AK", + name: "A. K., Johannesburg", + quote: "I learned how to say 'Ndaa' with the right tone, and the whole village smiled. That moment of connection was worth the entire trip." + }, + { + initials: "MT", + name: "M. T., Cape Town", + quote: "Tasting mopani worms for the first time — crunchy, nutty, and cooked by a grandmother who laughed at my hesitation. Now I crave them." + }, + { + initials: "LR", + name: "L. R., London", + quote: "Watching the sunrise from the lodge deck, with the Soutpansberg turning gold and the baobabs silhouetted, I felt completely still." + } + ] + + return ( +
+
+

+ What our guests say +

+

+ Real stories shared over the fire, around the table. +

+
+ {stories.map((s, i) => ( +
+
+
+ {s.initials} +
+

{s.name}

+
+

+ “{s.quote}” +

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