"use client"; import { cn } from "@/lib/utils"; import React from "react"; export function StatsWithGradient() { const items = [ { description: "Years in the business trying to build this up.", value: "10+", }, { description: "People Fought trying to establish our brand.", value: "100k+", }, { description: "Fight Club Attendance so that everyone knows the first rule.", value: "100%", }, { description: "Spent fighting in the ring, only to forget after.", value: "100+", }, ]; return (

Trusted by fighters all over the world

We are a team of experienced fighters and boxers who are passionate about helping you grow your business.

{items.map((item, index) => (

{item.value}

{item.description}

))}
); } export const GradientBeam = () => { return (
); }; const Bars = () => { return ( ); };