13 Commits

Author SHA1 Message Date
5a22b35e5d Update src/app/page.tsx 2026-04-20 16:57:29 +00:00
83f3e44383 Merge version_5 into main
Merge version_5 into main
2026-04-20 16:55:58 +00:00
fba51c53f2 Update src/app/page.tsx 2026-04-20 16:55:52 +00:00
835376586e Merge version_4 into main
Merge version_4 into main
2026-04-20 16:53:10 +00:00
1b872d2eb0 Merge version_4 into main
Merge version_4 into main
2026-04-20 16:24:48 +00:00
c7e0e46dfe Merge version_4 into main
Merge version_4 into main
2026-04-20 16:22:39 +00:00
2d29aa5ae8 Merge version_4 into main
Merge version_4 into main
2026-04-20 16:22:00 +00:00
df54cbfa7f Merge version_4 into main
Merge version_4 into main
2026-04-20 16:21:22 +00:00
16a695bb05 Merge version_4 into main
Merge version_4 into main
2026-04-20 16:17:59 +00:00
b4c302882f Merge version_4 into main
Merge version_4 into main
2026-04-20 16:13:39 +00:00
a1666fb2ed Merge version_4 into main
Merge version_4 into main
2026-04-20 15:48:03 +00:00
c3dfe8ce76 Merge version_3 into main
Merge version_3 into main
2026-04-20 15:47:46 +00:00
c40292619e Merge version_2 into main
Merge version_2 into main
2026-04-20 15:45:31 +00:00

View File

@@ -32,10 +32,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Início", id: "#hero" },
{ name: "Sobre", id: "#about" },
{ name: "Procedimentos", id: "#services" },
{ name: "Contato", id: "#contact" },
{ name: "Início", id: "/" },
{ name: "Sobre", id: "/" },
{ name: "Procedimentos", id: "/" },
{ name: "Contato", id: "/" },
]}
brandName="Harmonização Orofacial"
/>
@@ -46,7 +46,7 @@ export default function LandingPage() {
background={{ variant: "plain" }}
title="Dra. Vitória Hagge"
description="Resultados sofisticados, naturais e seguros. Especialista em harmonização orofacial."
buttons={[{ text: "Agendar pelo WhatsApp", href: "#contact" }]}
buttons={[{ text: "Agendar pelo WhatsApp", href: "https://wa.me/21971709322" }]}
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cb9jGawxVZsMI2v3nsS4vUcMah/uploaded-1776702274763-m0avem4f.png", imageAlt: "Resultados Naturais" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cb9jGawxVZsMI2v3nsS4vUcMah/uploaded-1776702009954-g6y4jytf.png", imageAlt: "Ambiente Premium" },
@@ -184,6 +184,7 @@ export default function LandingPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cb9jGawxVZsMI2v3nsS4vUcMah/uploaded-1776701575685-fyt23vat.png"
mediaAnimation="slide-up"
buttonText="Iniciar conversa"
onSubmit={() => window.open("https://wa.me/21971709322", "_blank")}
/>
</div>
@@ -191,7 +192,7 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Dra. Vitória Hagge", items: [{ label: "Sobre", href: "#about" }, { label: "Procedimentos", href: "#services" }] },
{ title: "Contato", items: [{ label: "WhatsApp", href: "https://wa.me/5521999999999" }, { label: "Localização", href: "#contact" }] },
{ title: "Contato", items: [{ label: "WhatsApp", href: "https://wa.me/21971709322" }, { label: "Localização", href: "#contact" }] },
]}
bottomLeftText="© 2026 Dra. Vitória Hagge"
bottomRightText="Niterói, RJ"
@@ -200,4 +201,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}