"use client" import { Package, Download, Users, Star } from '@/lib/icons' import { Card, CardContent } from '@/components/ui/card' import { DotPattern } from '@/components/dot-pattern' const stats = [ { icon: Package, value: '500+', label: 'Components', description: 'Ready-to-use blocks' }, { icon: Download, value: '25K+', label: 'Downloads', description: 'Trusted worldwide' }, { icon: Users, value: '10K+', label: 'Developers', description: 'Active community' }, { icon: Star, value: '4.9', label: 'Rating', description: 'User satisfaction' } ] export function StatsSection() { return (
{/* Background with transparency */}
{/* Stats Grid */}
{stats.map((stat, index) => (

{stat.value}

{stat.label}

{stat.description}

))}
) }