Spaces:
Running
Running
File size: 1,788 Bytes
06a7653 6873acf 06a7653 6873acf 06a7653 6873acf 06a7653 6873acf 06a7653 6873acf 06a7653 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
"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 (
<section className="container mx-auto grid gap-10 px-8 py-44 lg:grid-cols-1 lg:gap-20 xl:grid-cols-2 xl:place-items-center">
<div>
<Typography
variant="h6"
color="orange"
className="mb-6 font-medium"
placeholder={""}
onPointerEnterCapture={() => {}}
onPointerLeaveCapture={() => {}}
>
Our Stats
</Typography>
<Typography
variant="h1"
color = "blue-gray"
className="text-5xl font-bold leading-tight lg:w-3/4"
placeholder={""}
onPointerEnterCapture={() => {}}
onPointerLeaveCapture={() => {}}
>
Conference Highlights
</Typography>
<Typography placeholder={""}
variant="lead"
className="mt-3 w-full !text-gray-500 lg:w-9/12"
onPointerEnterCapture={() => {}}
onPointerLeaveCapture={() => {}}
>
This three-day extravaganza brings together the brightest minds,
leading innovators, and top companies in the field of Artificial
Intelligence.
</Typography>
</div>
<div>
<div className="grid grid-cols-2 gap-8 gap-x-28">
{STATS.map((props, key) => (
<StatsCard key={key} {...props} />
))}
</div>
</div>
</section>
);
}
export default OurStats;
|