"use client"; import { motion } from "framer-motion"; const stats = [ { value: "3", label: "Categories" }, { value: "∞", label: "Possibilities" }, { value: "1", label: "Winner Per Category" }, { value: "100%", label: "Free Entry" }, ]; export default function Stats() { return (
{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
); }