Categories

All collections

Moriveda

Menu

Benefits

import { Apple, Brain, Flame, Heart, Shield, Zap } from "lucide-react"; import { motion } from "motion/react"; const benefits = [ { icon: Zap, title: "Natural Energy Boost", description: "Rich in iron and B-vitamins, Moringa supports natural, crash-free energy throughout the day without caffeine.", }, { icon: Shield, title: "Immune Support", description: "7x more Vitamin C than oranges. Moringa's antioxidant profile strengthens your body's natural defenses.", }, { icon: Flame, title: "Anti-Inflammatory", description: "Isothiocyanates and quercetin reduce chronic inflammation, supporting joint health and overall wellbeing.", }, { icon: Apple, title: "Rich in Vitamins", description: "Contains Vitamins A, B1, B2, B3, B6, C, E, and K — a complete micronutrient profile in every serving.", }, { icon: Brain, title: "Mental Clarity", description: "Antioxidants and neuroprotective compounds support cognitive function, focus, and mental sharpness.", }, { icon: Heart, title: "Heart Health", description: "Moringa helps regulate cholesterol levels and supports cardiovascular health through its rich nutrient density.", }, ]; export function Benefits() { return (

Why Moringa

The Tree of Life

For thousands of years, Moringa oleifera has been revered as nature's most complete nutritional source. Here's what every daily serving delivers.

{benefits.map((benefit, i) => (
 

{benefit.title}

{benefit.description}

))}
{[ { value: "92", label: "Nutrients" }, { value: "46", label: "Antioxidants" }, { value: "36", label: "Anti-inflammatories" }, { value: "9", label: "Essential Amino Acids" }, ].map((stat) => (
{stat.value}
{stat.label}
))}

); }