From 5e0882bfbc8115c6a038631946e492ebfdcbbf54 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 17:10:22 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 24c3cdf..de7565d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,14 +9,9 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { CheckCircle, Clock, Trophy, Shield, Scale, DollarSign, Gavel, MessageSquare, Star, Phone, Mail, MapPin, Briefcase } from 'lucide-react'; +import { CheckCircle, Clock, Trophy, Shield, Scale, DollarSign, Gavel, MessageSquare, Star, Phone, Mail, MapPin, Briefcase, Award, Lock, Zap } from 'lucide-react'; export default function LandingPage() { - const handleContactFormSubmit = (data: Record) => { - console.log('Form submitted:', data); - // Handle form submission - could send to backend or email service - }; - return ( @@ -154,14 +153,13 @@ export default function LandingPage() { id: "3", value: "98%", title: "Taxa de Satisfação de Clientes", items: ["Casos resolvidos satisfatoriamente", "Defesa especializada garantida", "Recuperação de valores indevidos"] } ]} - animationType="slide-up" - textboxLayout="default" - useInvertedBackground={true} buttons={[ - { text: "Ligar Agora", href: "tel:+558199844071" }, - { text: "Agende uma Consulta", href: "#contact" } + { text: "Começar Agora", href: "#contact" }, + { text: "Falar com Especialista", href: "tel:+558199844071" } ]} - buttonAnimation="slide-up" + animationType="slide-up" + textboxLayout="split-actions" + useInvertedBackground={true} ariaLabel="Métricas de desempenho" /> @@ -169,7 +167,7 @@ export default function LandingPage() {
-- 2.49.1 From 3442eb60e7a4dde69a0a6aa0f6c74a89a2edb60a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 17:10:22 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 0ca374a..ecf7059 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #faf9f6; - --card: #f4f1ed; - --foreground: #1a1410; - --primary-cta: #c9a961; + --background: #ffffff; + --card: #f8f9fa; + --foreground: #1a1a1a; + --primary-cta: #d4af37; --primary-cta-text: #ffffff; - --secondary-cta: #8b7355; + --secondary-cta: #2c3e50; --secondary-cta-text: #120a00e6; --accent: #d4af37; - --background-accent: #f0e6d2; + --background-accent: #faf8f3; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1