From 42eb60b9355efe805a8568a019285c9b7f112bfd Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:10:29 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a065b28..71a3a2e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmallSizeLargeTitles" - background="aurora" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="radial-glow" secondaryButtonStyle="layered" @@ -46,7 +46,7 @@ export default function LandingPage() { tag="Soluciones Legales de Confianza" tagIcon={Shield} tagAnimation="slide-up" - background={{ variant: "aurora" }} + background={{ variant: "plain" }} buttons={[ { text: "📲 Quiero recibir asesoría gratuita", href: "#contact" }, { text: "Conoce cómo funciona", href: "#process" } @@ -82,19 +82,19 @@ export default function LandingPage() { features={[ { id: 1, - title: "Seguridad jurídica", description: "Tu patrimonio queda protegido bajo un marco legal sólido y reconocido en México.", imageSrc: "http://img.b2bpic.net/free-vector/man-offering-woman-apple-landing-page-template_74855-20845.jpg?_wi=1", imageAlt: "Seguridad legal y protección" + title: "Seguridad jurídica", description: "Tu patrimonio queda protegido bajo un marco legal sólido y reconocido en México.", imageSrc: "http://img.b2bpic.net/free-vector/man-offering-woman-apple-landing-page-template_74855-20845.jpg", imageAlt: "Seguridad legal y protección" }, { id: 2, - title: "Asesoría personalizada", description: "Analizamos tu situación particular y recomendamos la estructura de fideicomiso más conveniente.", imageSrc: "http://img.b2bpic.net/free-vector/man-offering-woman-apple-landing-page-template_74855-20845.jpg?_wi=2", imageAlt: "Asesoría personalizada" + title: "Asesoría personalizada", description: "Analizamos tu situación particular y recomendamos la estructura de fideicomiso más conveniente.", imageSrc: "http://img.b2bpic.net/free-vector/man-offering-woman-apple-landing-page-template_74855-20845.jpg", imageAlt: "Asesoría personalizada" }, { id: 3, - title: "Acompañamiento integral", description: "Te guiamos desde la primera consulta hasta la firma del contrato y más allá.", imageSrc: "http://img.b2bpic.net/free-vector/man-offering-woman-apple-landing-page-template_74855-20845.jpg?_wi=3", imageAlt: "Acompañamiento profesional" + title: "Acompañamiento integral", description: "Te guiamos desde la primera consulta hasta la firma del contrato y más allá.", imageSrc: "http://img.b2bpic.net/free-vector/man-offering-woman-apple-landing-page-template_74855-20845.jpg", imageAlt: "Acompañamiento profesional" }, { id: 4, - title: "Atención cercana", description: "Hablamos en términos claros, sin tecnicismos, para que entiendas cada decisión.", imageSrc: "http://img.b2bpic.net/free-vector/man-offering-woman-apple-landing-page-template_74855-20845.jpg?_wi=4", imageAlt: "Comunicación clara" + title: "Atención cercana", description: "Hablamos en términos claros, sin tecnicismos, para que entiendas cada decisión.", imageSrc: "http://img.b2bpic.net/free-vector/man-offering-woman-apple-landing-page-template_74855-20845.jpg", imageAlt: "Comunicación clara" } ]} textboxLayout="default" -- 2.49.1 From 8869c11356a1306ae14aff27952b4d9263fc8d86 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:10:30 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 53 ++++++------------- 1 file changed, 17 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..a0356d5 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,32 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ text, className = '' }) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1