home page parts

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-22 20:45:26 +05:00
parent ff10553786
commit ff21ccb2af
16 changed files with 579 additions and 17 deletions

View File

@@ -23,17 +23,17 @@ export function Statistics() {
];
return (
<section className="w-full bg-black py-10 sm:py-20 lg:py-15">
<section className="w-full bg-black">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="grid grid-cols-2 md:grid-cols-4 gap-8 lg:gap-12">
{stats.map((stat, index) => (
<div key={index} className="flex flex-col items-center justify-center">
<div key={index} className="flex flex-col items-center justify-center py-10 sm:py-20 lg:py-15 border-b-red-600 border-b">
{/* Number and Symbol */}
<div className="flex items-baseline gap-2">
<span className="text-4xl sm:text-5xl lg:text-6xl font-bold text-white">
{stat.number}
</span>
<span className="text-2xl sm:text-3xl font-bold text-red-600">{stat.symbol}</span>
<span className="text-4xl sm:text-5xl lg:text-6xl font-bold text-red-600">{stat.symbol}</span>
</div>
{/* Label */}