home page parts
This commit is contained in:
@@ -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 */}
|
||||
|
||||
Reference in New Issue
Block a user