diff --git a/src/app/page.tsx b/src/app/page.tsx index d8cbd5e..9310436 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -45,7 +45,7 @@ export default function LandingPage() { tag="Profesionales con experiencia" tagIcon={Wrench} tagAnimation="slide-up" - background={{ variant: "circleGradient" }} + background={{ variant: "plain" }} kpis={[ { value: "+15 años", label: "Experiencia en reparación" }, { value: "98%", label: "Satisfacción de clientes" }, @@ -184,7 +184,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="Pide tu presupuesto sin compromiso" description="Contacta con Talleres VR para solicitar un presupuesto personalizado. Nuestro equipo atenderá tu consulta y te asesorará sobre el mejor servicio para tu vehículo." - background={{ variant: "circleGradient" }} + background={{ variant: "plain" }} useInvertedBackground={false} inputPlaceholder="Tu correo electrónico" buttonText="Enviar" diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 6be1410..43aae19 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,7 +6,7 @@ interface SvgTextLogoProps extends SVGProps { fontWeight?: string | number; fontFamily?: string; fill?: string; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit'; } export const SvgTextLogo = React.forwardRef(