diff --git a/src/components/sections/VoicesOfNurtureTestimonialsSection.tsx b/src/components/sections/VoicesOfNurtureTestimonialsSection.tsx new file mode 100644 index 0000000..6c26f0f --- /dev/null +++ b/src/components/sections/VoicesOfNurtureTestimonialsSection.tsx @@ -0,0 +1,51 @@ +'use client' + +export default function VoicesOfNurtureTestimonialsSection() { + const testimonials = [ + { + name: 'Thandi Mokoena', + role: 'Midrand regular', + quote: 'The marula body butter healed my dry patches within a week — now it steals my morning.', + }, + { + name: 'Liam Botha', + role: 'First-time buyer', + quote: 'Bought the rooibos face oil for my mom. She says it smells like her grandmother\'s garden.', + }, + { + name: 'Naledi Nkosi', + role: 'Skin therapist from Rosebank', + quote: 'I recommend Ndlovu Naturals to every client. Cold-pressed buchu is a game changer for acne.', + }, + ] + + return ( +
+
+

+ Voices of Nurture +

+

+ What our community says about their skin journey +

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

+ "{t.quote}" +

+

{t.name}

+

{t.role}

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