diff --git a/src/components/sections/GuestPraiseSection.tsx b/src/components/sections/GuestPraiseSection.tsx new file mode 100644 index 0000000..3d7db83 --- /dev/null +++ b/src/components/sections/GuestPraiseSection.tsx @@ -0,0 +1,42 @@ +'use client' + +export default function GuestPraiseSection() { + const testimonials = [ + { + name: 'Thandi M.', + role: 'Business traveler, Durban', + quote: 'I felt like a queen from the moment I arrived. The hosts went above and beyond to make my stay comfortable.' + }, + { + name: 'Kevin D.', + role: 'Weekend guest, Johannesburg', + quote: 'Spotless rooms, delicious braai evenings, and complete peace of mind with the security. Highly recommend.' + }, + { + name: 'Nomsa P.', + role: 'University visitor, Pietermaritzburg', + quote: 'Perfect for a business traveler needing a quiet, luxurious space. The proximity to the airport is a huge bonus.' + } + ] + + return ( +
+
+

What Our Guests Say

+

Real voices from KwaNtofoNtofo

+
+ {testimonials.map((t, i) => ( +
+
★★★★★
+

"{t.quote}"

+
+

{t.name}

+

{t.role}

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