"use client"; import { Typography } from "@material-tailwind/react"; import StatsCard from "@/components/stats-card"; const STATS = [ { count: "1,500+", title: "Participants", }, { count: "50", title: "Speakers", }, { count: "20+", title: "Workshops", }, { count: "3", title: "Days", }, ]; export function OurStats() { return (
Our Stats Conference Highlights This three-day extravaganza brings together the brightest minds, leading innovators, and top companies in the field of Artificial Intelligence.
{STATS.map((props, key) => ( ))}
); } export default OurStats;