Update src/app/page.tsx

This commit is contained in:
2026-05-10 03:05:44 +00:00
parent c729b5c76e
commit 22a56bba93

View File

@@ -2,12 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
@@ -29,7 +29,7 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Início", id: "hero" },
{ name: "Sobre", id: "about" },
@@ -133,22 +133,21 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
<ContactCenter
tag="Contato"
title="Pronto para dar o próximo passo?"
description="Preencha o formulário e nossa equipe entrará em contato prontamente para agendar uma conversa."
imageSrc="http://img.b2bpic.net/free-photo/businesswoman-making-calls-working-outdoors-sitting-city-centre-suit-holding-laptop-mo_1258-119491.jpg"
mediaAnimation="slide-up"
title="Entre em Contato"
description="Estamos prontos para atender suas dúvidas e ajudar você a encontrar o imóvel ideal."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterLogoEmphasis
logoText="JR Imóveis"
leftLink={{ text: "Termos de Uso", href: "#" }}
rightLink={{ text: "Privacidade", href: "#" }}
columns={[
{ items: [{ label: "Sobre Nós", href: "#about" }, { label: "Imóveis", href: "#products" }] },
{ items: [{ label: "Contato", href: "#contact" }, { label: "FAQ", href: "#faq" }] },
{ items: [{ label: "Termos de Uso", href: "#" }, { label: "Privacidade", href: "#" }] }
]}
/>
</div>
</ReactLenis>