8 Commits

Author SHA1 Message Date
67ecd070da Update src/app/page.tsx 2026-04-09 14:49:56 +00:00
627bce9f2f Merge version_2 into main
Merge version_2 into main
2026-04-09 14:48:46 +00:00
2ad1eb6693 Update src/app/page.tsx 2026-04-09 14:48:43 +00:00
f9fcb2cbc3 Merge version_2 into main
Merge version_2 into main
2026-04-09 14:47:41 +00:00
52fb294d5b Update src/app/page.tsx 2026-04-09 14:47:34 +00:00
489918a3b3 Merge version_1 into main
Merge version_1 into main
2026-04-09 14:44:06 +00:00
83e8c3eea9 Merge version_1 into main
Merge version_1 into main
2026-04-09 14:43:42 +00:00
18a89f00e1 Merge version_1 into main
Merge version_1 into main
2026-04-09 14:43:07 +00:00

View File

@@ -13,6 +13,8 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Award, CheckCircle, Clock, Eye, FileText, Search, Settings, Shield, Users, Zap, Wrench } from "lucide-react";
export default function LandingPage() {
const whatsappLink = "https://wa.me/5500000000000?text=Ol%C3%A1%21%20Gostaria%20de%20agendar%20um%20servi%C3%A7o%20na%20Mec%C3%A2nica%20JS.";
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -36,7 +38,7 @@ export default function LandingPage() {
{ name: "Contato", id: "contact" },
]}
brandName="Mecânica JS"
button={{ text: "Agendar" }}
button={{ text: "Agendar", href: whatsappLink }}
/>
</div>
@@ -45,7 +47,7 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }}
title="Precisão técnica para quem não aceita menos que a perfeição."
description="Na Mecânica JS, resolvemos o que outros apenas diagnosticam. Profissionais de elite, tecnologia de ponta e o cuidado que seu veículo merece."
buttons={[{ text: "Agendar Diagnóstico de Elite", href: "#contact" }]}
buttons={[{ text: "Agendar Diagnóstico de Elite", href: whatsappLink }]}
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bag3h5O25bp8ZnRSfrVSnN9A9z/close-up-cinematic-photograph-of-an-auto-1775745771756-fcc4d912.png?_wi=1", imageAlt: "Motor sendo ajustado" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bag3h5O25bp8ZnRSfrVSnN9A9z/close-up-macro-shot-of-automotive-gears--1775745770698-29a5cc4d.png?_wi=1", imageAlt: "Engrenagens de precisão" },
@@ -114,6 +116,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Serviços de Alta Performance"
description="Tecnologia e cuidado para seu veículo."
buttons={[{ text: "Agendar Agora", href: whatsappLink }]}
products={[
{ id: "1", name: "Injeção Eletrônica", price: "Investimento a partir de R$ 800", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bag3h5O25bp8ZnRSfrVSnN9A9z/close-up-macro-shot-of-automotive-gears--1775745770698-29a5cc4d.png?_wi=3" },
{ id: "2", name: "Revisão Performance", price: "Investimento a partir de R$ 1200", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bag3h5O25bp8ZnRSfrVSnN9A9z/modern-digital-diagnostic-monitor-showin-1775745772103-0604377a.png?_wi=3" },
@@ -130,7 +133,7 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{ variant: "rotated-rays-animated" }}
text="Não arrisque a sua segurança com soluções temporárias. Escolha a excelência da Mecânica JS."
buttons={[{ text: "Falar com um Especialista via WhatsApp", href: "https://wa.me/5500000000000" }]}
buttons={[{ text: "Falar com um Especialista via WhatsApp", href: whatsappLink }]}
/>
</div>
@@ -139,13 +142,13 @@ export default function LandingPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bag3h5O25bp8ZnRSfrVSnN9A9z/low-angle-cinematic-view-of-a-luxury-per-1775745772399-e3d9e286.png?_wi=2"
logoText="Mecânica JS"
columns={[
{ title: "Institucional", items: [{ label: "Sobre nós", href: "#about" }, { label: "Carreiras", href: "#" }, { label: "Blog", href: "#" }] },
{ title: "Serviços", items: [{ label: "Diagnósticos", href: "#services" }, { label: "Performance", href: "#services" }, { label: "Revisões", href: "#services" }] },
{ title: "Legal", items: [{ label: "Privacidade", href: "#" }, { label: "Termos", href: "#" }] }
{ title: "", items: [{ label: "Sobre nós", href: "#about" }, { label: "Carreiras", href: whatsappLink }, { label: "Blog", href: whatsappLink }] },
{ title: "Serviços", items: [{ label: "Diagnósticos", href: whatsappLink }, { label: "Performance", href: whatsappLink }, { label: "Revisões", href: whatsappLink }] },
{ title: "Legal", items: [{ label: "Privacidade", href: whatsappLink }, { label: "Termos", href: whatsappLink }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}