Update src/app/page.tsx

This commit is contained in:
2026-05-10 21:43:28 +00:00
parent 4e44f12694
commit 3ab25c6473

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
@@ -117,18 +117,21 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCTA
text="Begin Your Journey With Us" tag="Connect"
background={{ variant: "gradient-bars" }} title="Begin Your Journey With Us"
useInvertedBackground={true} description="Reach out to our expert team for personalized real estate guidance and consultation."
buttons={[{ text: "Inquire Today" }]} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
buttons={[{ text: "Inquire Today", href: "#contact" }]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoReveal
logoText="Bright View" logoText="Bright View"
columns={[{ items: [{ label: "About" }, { label: "Inventory" }, { label: "Contact" }] }]} leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/> />
</div> </div>
</ReactLenis> </ReactLenis>