{
"title": "Business Software.\nOur Craft. Our Passion.",
"stats": [
{
"value": 150,
"suffix": "M+",
"label": "Users Globally",
"duration": 2000
},
{
"value": 150,
"suffix": "+",
"label": "Countries Served",
"duration": 2000
},
{
"value": 19,
"suffix": "K+",
"label": "Employees Worldwide",
"duration": 1800
},
{
"value": 30,
"suffix": "+",
"label": "Years in Business",
"duration": 1500
},
{
"value": 60,
"suffix": "+",
"label": "Products",
"duration": 1500
}
],
"ctaText": "SABER MÁS",
"ctaHref": "#docs",
"backgroundColor": "#0d66b3",
"textColor": "#ffffff"
}EstadisticasIncrementales01.vueSección hero de ancho completo con fondo configurable (color sólido o imagen), título destacado, grid de métricas con animación incremental, y botón CTA opcional. Diseño corporativo estilo enterprise SaaS, completamente responsive.
| Prop | Tipo | Default | Descripción |
|---|---|---|---|
title | string | 'Business Software.\nOur Craft. Our Passion.' | Título principal. Soporta saltos de línea con \n. |
stats | StatItem[] | [] | Array de métricas (0 a N). Si vacío, la grid no se muestra. |
ctaText | string | '' | Texto del CTA. Si vacío, no se renderiza. |
ctaHref | string | '' | Destino del CTA. # para scroll suave, URL para navegación. |
ctaTarget | '_self' | '_blank' | '_self' | Target del enlace. Solo aplica a URLs. |
backgroundColor | string | '#0d66b3' | Color de fondo en hexadecimal. |
backgroundOpacity | number | 1 | Opacidad del fondo (0 a 1). |
textColor | string | '#ffffff' | Color del texto en hexadecimal. |
imageUrl | string | '' | URL de imagen de fondo. Reemplaza la ilustración SVG. |
imageObjectFit | 'cover' | 'contain' | 'fill' | 'none' | 'scale-down' | 'cover' | CSS object-fit de la imagen. |
imageObjectPosition | string | 'center' | CSS object-position de la imagen. |
interface StatItem {
value: number // Valor numérico final (ej: 150)
suffix: string // Sufijo después del número (ej: "M+", "K+", "+")
label: string // Texto descriptivo (ej: "Users Globally")
duration?: number // Duración de la animación en ms (default: 2000)
}<EstadisticasIncrementales01
title="Business Software.\nOur Craft. Our Passion."
:stats="[
{ value: 150, suffix: 'M+', label: 'Users Globally', duration: 2000 },
{ value: 19, suffix: 'K+', label: 'Employees Worldwide', duration: 1800 },
{ value: 60, suffix: '+', label: 'Products', duration: 1500 },
]"
cta-text="VER MÁS"
cta-href="https://example.com"
cta-target="_blank"
background-color="#0d66b3"
:background-opacity="0.9"
image-url="/images/hero-bg.jpg"
image-object-fit="cover"
image-object-position="center top"
/>