From d237774dc2c6b70a489708e089810e03fb6c04f8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:26:31 +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 bf729d7..33b1c4d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmallSizeMediumTitles" - background="blurBottom" + background="circleGradient" cardStyle="inset" primaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow" @@ -45,7 +45,7 @@ export default function LandingPage() { description="Equipamentos profissionais para obras, reformas e manutenção. Atendimento rápido, locação com excelente custo-benefício e garantia de confiabilidade." tag="Equipamentos para Pirituba" tagIcon={Hammer} - background={{ variant: "blurBottom" }} + background={{ variant: "plain" }} kpis={[ { value: "15+", label: "Anos de Experiência" }, { value: "4.1 ⭐", label: "Avaliação no Google" }, @@ -56,7 +56,7 @@ export default function LandingPage() { { text: "📞 Ligar Agora", href: "tel:+5511987088993" }, { text: "💬 WhatsApp", href: "https://wa.me/5511987088993?text=Gostaria%20de%20um%20orçamento%20para%20aluguel%20de%20equipamentos" } ]} - imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-working-out-together_23-2150405456.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-working-out-together_23-2150405456.jpg" imageAlt="Equipamentos profissionais de construção" mediaAnimation="slide-up" imagePosition="right" @@ -135,8 +135,8 @@ export default function LandingPage() {
Date: Wed, 11 Mar 2026 13:26:31 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 63 ++++++++----------- 1 file changed, 26 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..b87b919 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,40 @@ -"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; + fillColor?: string; + fontSize?: number; + dominantBaseline?: 'hanging' | 'middle' | 'auto' | 'baseline' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'mathematical' | 'central'; } -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, + fillColor = 'currentColor', + fontSize = 48, + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1