"use client"; import { motion } from "framer-motion"; export default function ProblemSection() { return (
The Problem

Tired of Hair & Skin Products That Don't Deliver?

You deserve better than products filled with harsh chemicals and empty promises

{[ { icon: ( ), problem: "Dry, Damaged Hair", description: "Products leave your hair brittle, frizzy, and breaking despite expensive treatments", }, { icon: ( ), problem: "Confusing Ingredients", description: "Can't pronounce what's in your skincare. parabens, sulfates, synthetic fragrances—dangerous toxins", }, { icon: ( ), problem: "No Real Results", description: "Countless products promise miracles but deliver nothing but empty promises and wasted money", }, ].map((item, index) => ( {/* Decorative top border */}
{item.icon}

{item.problem}

{item.description}

))}
); }