Update src/app/page.tsx

This commit is contained in:
2026-05-08 05:57:21 +00:00
parent 29cea9c3f1
commit 732f330d80

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -139,21 +139,22 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitText
<FaqDouble
useInvertedBackground={true}
faqs={[
{ id: "f1", title: "How do we start?", content: "Simply reach out via phone or email for a consultation." },
{ id: "f2", title: "What areas do you cover?", content: "We cover all major neighborhoods in the metro area." },
{ id: "f3", title: "Do you provide valuation?", content: "Yes, we offer free market valuations for all clients." },
]}
sideTitle="Frequently Asked Questions"
sideDescription="Everything you need to know about working with Dream House."
title="Frequently Asked Questions"
description="Everything you need to know about working with Dream House."
faqsAnimation="blur-reveal"
textboxLayout="split"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
<ContactSplit
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
tag="Get in touch"
@@ -163,16 +164,16 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
<FooterLogoEmphasis
logoText="Dream House"
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Resources", items: [{ label: "Properties", href: "#" }, { label: "Services", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
{ items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
{ items: [{ label: "Properties", href: "#" }, { label: "Services", href: "#" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}