From 121be6a457bfd8c9c6be08d8be75cd409895463d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:15 +0000 Subject: [PATCH] Deploy --- .../sections/BrandValuesSection.tsx | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/components/sections/BrandValuesSection.tsx diff --git a/src/components/sections/BrandValuesSection.tsx b/src/components/sections/BrandValuesSection.tsx new file mode 100644 index 0000000..e17a73f --- /dev/null +++ b/src/components/sections/BrandValuesSection.tsx @@ -0,0 +1,42 @@ +'use client' + +import { Award, Heart, Users } from 'lucide-react' + +export default function BrandValuesSection() { + const values = [ + { icon: Users, title: "Community First", description: "Every purchase from Ubuntu Thread supports local artisans and township collectives across South Africa." }, + { icon: Heart, title: "Authentic Identity", description: "We blend global streetwear silhouettes with distinctly South African prints, textures, and stories." }, + { icon: Award, title: "Uncompromising Quality", description: "Premium fabrics and construction ensure our gear withstands the energy of urban life in Joburg, Durban, and Cape Town." } + ] + + return ( +
+
+
+

Our Ethos

+

+ Rooted in Community,
Built for the Streets. +

+

+ Ubuntu Thread is more than clothing — it's a movement that fuses global streetwear culture with the raw energy of South African townships. We exist to dress a generation that moves with purpose and pride. +

+
+ +
+ {values.map((v, i) => { + const Icon = v.icon + return ( +
+
+ +
+

{v.title}

+

{v.description}

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