--- import type { TranslationKey } from '@/i18n/ui'; import StatCounter from './StatCounter.astro'; interface Props { t: (key: TranslationKey) => string; } const { t } = Astro.props; const stats = [ { value: '26+', label: 'Años de experiencia', sub: 'Desde el 2000' }, { value: '100+', label: 'Proyectos hospedados', sub: 'Webs, e-commerce, infra' }, { value: '4', label: 'Países', sub: 'Canadá, USA, Alemania, UY' }, { value: 'Senior', label: 'Equipo senior', sub: 'SysAdmin / SRE' }, ]; ---
{stats.map((stat) => (
{stat.value}
{stat.label}
{stat.sub}
))}