"use client"; import { motion } from "framer-motion"; import Image from "next/image"; const stats = [ { value: "92%", label: "reported improved hair shine in 2 weeks" }, { value: "87%", label: "saw visible reduction in dry skin" }, { value: "95%", label: "noticed smoother, healthier hair texture" }, { value: "89%", label: "experienced softer, more nourished skin" }, ]; export default function StatsSection() { return (
{/* Left Content */}
Our Philosophy Transformation
starts here
Every ManoonOils product is built on a simple promise: only ingredients that serve a purpose. Our cold-pressed oils deliver real nourishment for hair and skin, without the noise. {/* Stats Grid */}
{stats.map((stat, index) => ( {stat.value.replace("%", "")}
{stat.value}

{stat.label}

))}
{/* Right Image */} ManoonOils Luksuzni Set
); }