Update src/app/page.tsx

This commit is contained in:
2026-05-20 17:41:29 +00:00
parent d20cf1c6d7
commit b384025268

View File

@@ -3,10 +3,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
@@ -166,23 +166,20 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
<ContactText
text="Get in touch with our team to discuss your next construction project, Build Smarter Today."
background={{ variant: "plain" }}
tag="Ready to Start?"
title="Build Smarter Today"
description="Get in touch with our team to discuss your next construction project."
buttons={[{ text: "Contact Sales", href: "#" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Platform", items: [{ label: "Overview", href: "#" }, { label: "Features", href: "#features" }] },
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Careers", href: "#" }] },
]}
<FooterLogoEmphasis
logoText="BuildMarket"
columns={[
{ items: [{ label: "Overview", href: "#" }, { label: "Features", href: "#features" }] },
{ items: [{ label: "About", href: "#about" }, { label: "Careers", href: "#" }] },
]}
/>
</div>
</ReactLenis>