From d24c398127b619f1b25fb3b61dff483c9732af10 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 15:15:26 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c38b728..e39ddd0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,7 +16,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="compact" sizing="largeSmallSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="gradient-mesh" primaryButtonStyle="flat" secondaryButtonStyle="glass" @@ -46,14 +46,14 @@ export default function LandingPage() { { text: "Ver FAQ", href: "#faq" } ]} buttonAnimation="slide-up" - background={{ variant: "aurora" }} + background={{ variant: "plain" }} carouselItems={[ - { id: "1", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg?_wi=1", imageAlt: "mobile app customer support illustration" }, - { id: "2", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg?_wi=2", imageAlt: "mobile app customer support illustration" }, - { id: "3", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg?_wi=3", imageAlt: "mobile app customer support illustration" }, - { id: "4", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg?_wi=4", imageAlt: "mobile app customer support illustration" }, - { id: "5", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg?_wi=5", imageAlt: "mobile app customer support illustration" }, - { id: "6", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg?_wi=6", imageAlt: "mobile app customer support illustration" } + { id: "1", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg", imageAlt: "mobile app customer support illustration" }, + { id: "2", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg", imageAlt: "mobile app customer support illustration" }, + { id: "3", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg", imageAlt: "mobile app customer support illustration" }, + { id: "4", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg", imageAlt: "mobile app customer support illustration" }, + { id: "5", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg", imageAlt: "mobile app customer support illustration" }, + { id: "6", imageSrc: "http://img.b2bpic.net/free-photo/african-american-fitness-model-caucasian-man-talking-while-training-outdoors_1157-49034.jpg", imageAlt: "mobile app customer support illustration" } ]} autoPlay={true} autoPlayInterval={4000} -- 2.49.1 From bf566a0cf0553bc6da22edea1a5bd80932722ce5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 15:15:26 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 65 ++++++++----------- 1 file changed, 28 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..b508204 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,42 @@ -"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; + fontSize?: number; + fontWeight?: number | string; + fill?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + className = '', + fontSize = 24, + fontWeight = 'bold', + fill = 'currentColor', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1