From fae31d9111cdf933076c0cbb5f241aee00608bb5 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:06:15 +0000 Subject: [PATCH] Deploy --- .../sections/FamShoutoutsSection.tsx | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 src/components/sections/FamShoutoutsSection.tsx diff --git a/src/components/sections/FamShoutoutsSection.tsx b/src/components/sections/FamShoutoutsSection.tsx new file mode 100644 index 0000000..4468d40 --- /dev/null +++ b/src/components/sections/FamShoutoutsSection.tsx @@ -0,0 +1,79 @@ +'use client' + +import Image from 'next/image' +import { Star } from 'lucide-react' + +export default function FamShoutoutsSection() { + const shoutouts = [ + { + name: 'Thandi M.', + handle: '@thandi_in_the_hood', + quote: 'Mzansi Urban hoodie got me compliments all the way from Soweto to Sandton. This is not just a brand — it is a movement.', + image: 'https://images.pexels.com/photos/5560606/pexels-photo-5560606.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + { + name: 'Lunga K.', + handle: '@lunga_steez', + quote: 'My first African-print cap arrived and immediately became my signature piece. The quality tells you they care.', + image: 'https://images.pexels.com/photos/5417767/pexels-photo-5417767.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + { + name: 'Naledi R.', + handle: '@naledi_streetculture', + quote: 'Every drop sells out in hours. That is the energy. Mzansi Urban understands kasi culture like nobody else.', + image: 'https://images.pexels.com/photos/36788996/pexels-photo-36788996.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + ] + + return ( +
+
+
+ Real Talk +

Fam Shoutouts

+

What the streets are saying about Mzansi Urban.

+
+ +
+ {shoutouts.map((s, i) => ( +
+
+ {s.name} +
+
+ + + + + +
+

“{s.quote}”

+

{s.name}

+

{s.handle}

+
+ ))} +
+ +
+ + Tag us for a chance to be featured + +
+
+
+ ) +}