diff --git a/src/components/sections/SalonDifferenceSection.tsx b/src/components/sections/SalonDifferenceSection.tsx new file mode 100644 index 0000000..b3fe9dc --- /dev/null +++ b/src/components/sections/SalonDifferenceSection.tsx @@ -0,0 +1,40 @@ +'use client' + +import { GraduationCap, Scissors, Sparkles } from 'lucide-react' +import { Card, CardContent } from '@/components/ui/Card' + +const differences = [ + { icon: Scissors, title: 'Every service, one address', text: 'Cuts, colour, keratin, braids, perms and nails happen under one Fourways roof — no more driving across Joburg on a Saturday.' }, + { icon: Sparkles, title: 'Chemistry meets heritage', text: 'Olaplex and Wella colour systems work alongside hand-tied braiding and natural-hair care, so your texture sets the rules.' }, + { icon: GraduationCap, title: 'Trained in both worlds', text: 'Our stylists study international chemical techniques and African hair traditions — not just one trade.' }, +] + +export default function SalonDifferenceSection() { + return ( +
+
+
+

What sets us apart

+

Why natural hair and colour live happily under one roof.

+
+
+
+ {differences.map((item) => { + const Icon = item.icon + return ( + +
+ +
+ +

{item.title}

+

{item.text}

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