"use client"; import { motion } from "framer-motion"; import { Droplet, Shield, Clock, Heart } from "lucide-react"; const features = [ { icon: Droplet, title: "Deep Hydration & Nourishment", description: "Our cold-pressed oils penetrate deep into hair and skin, delivering essential fatty acids and vitamins for lasting moisture without greasiness.", }, { icon: Shield, title: "Natural Protection", description: "Rich in antioxidants, our oils shield your hair and skin from environmental stressors, UV damage, and pollution.", }, { icon: Clock, title: "Anti-Ageing Benefits", description: "Packed with vitamin E and essential nutrients that promote collagen production and cellular renewal for youthful skin and healthy hair.", }, { icon: Heart, title: "Gentle for All Types", description: "100% natural, cruelty-free formulas suitable for sensitive skin and all hair types. No synthetic fragrances or harsh chemicals.", }, ]; export default function FeaturesSection() { return (
{/* Left Content */} The Science

You have needs,
we have answers

{/* Right Features List */}
{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
); }