"use client"; import { motion } from "framer-motion"; const badges = [ { icon: ( ), stats: "4.9/5", label: "Average Rating", subtext: "Based on 2,847 reviews", }, { icon: ( ), stats: "50,000+", label: "Happy Customers", subtext: "Worldwide", }, { icon: ( ), stats: "100%", label: "Natural Ingredients", subtext: "No additives", }, { icon: ( ), stats: "Free", label: "Shipping", subtext: "Orders over 3,000 RSD", }, ]; export default function TrustBadges() { return (
{badges.map((badge, index) => (
{badge.icon}

{badge.stats}

{badge.label}

{badge.subtext}

))}
); }