Update src/app/how-it-works/page.tsx

This commit is contained in:
2026-05-31 02:57:54 +00:00
parent 4c4013f908
commit acfa028ca3

View File

@@ -10,47 +10,35 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="medium"
background="none"
cardStyle="soft-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="bold"
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLarge"
background="floatingGradient"
cardStyle="glass-elevated"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "How It Works",
id: "/how-it-works",
},
name: "How It Works", id: "/how-it-works"},
{
name: "About Us",
id: "/about-us",
},
name: "About Us", id: "/about-us"},
{
name: "Sell Your Property",
id: "/sell-property",
},
name: "Sell Your Property", id: "/sell-property"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="WH Group Acquisitions"
button={{
text: "Get My Offer",
href: "/sell-property",
}}
text: "Get My Offer", href: "/sell-property"}}
/>
</div>
@@ -61,37 +49,21 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
id: "step1",
title: "1. Submit Your Property Information",
descriptions: [
"Provide us with some basic details about your land or property through our secure online form. It's quick, easy, and no-obligation.",
],
imageSrc: "http://img.b2bpic.net/free-photo/adoption-application-family-guardianship-support-concept_53876-122724.jpg",
},
id: "step1", title: "1. Submit Your Property Information", descriptions: [
"Provide us with some basic details about your land or property through our secure online form. It's quick, easy, and no-obligation."],
imageSrc: "http://img.b2bpic.net/free-photo/adoption-application-family-guardianship-support-concept_53876-122724.jpg"},
{
id: "step2",
title: "2. We Review & Contact You",
descriptions: [
"Our team of experts will promptly review your submission. We'll then contact you to discuss the property further and answer any questions you may have.",
],
imageSrc: "http://img.b2bpic.net/free-photo/female-architect-presenting-floor-plan-discussing-blueprint_74855-2763.jpg",
},
id: "step2", title: "2. We Review & Contact You", descriptions: [
"Our team of experts will promptly review your submission. We'll then contact you to discuss the property further and answer any questions you may have."],
imageSrc: "http://img.b2bpic.net/free-photo/female-architect-presenting-floor-plan-discussing-blueprint_74855-2763.jpg"},
{
id: "step3",
title: "3. Receive a Fair Cash Offer",
descriptions: [
"Based on our assessment, you'll receive a transparent, no-obligation cash offer. There are no hidden fees, commissions, or repair requirements.",
],
imageSrc: "http://img.b2bpic.net/free-photo/real-estate-sector_23-2151925494.jpg",
},
id: "step3", title: "3. Receive a Fair Cash Offer", descriptions: [
"Based on our assessment, you'll receive a transparent, no-obligation cash offer. There are no hidden fees, commissions, or repair requirements."],
imageSrc: "http://img.b2bpic.net/free-photo/real-estate-sector_23-2151925494.jpg"},
{
id: "step4",
title: "4. Close on Your Timeline",
descriptions: [
"If our offer works for you, we'll proceed with closing on your preferred schedule. We handle all the paperwork and ensure a smooth, private transaction.",
],
imageSrc: "http://img.b2bpic.net/free-photo/lease-renting-contract-residential-tenant-concept_53876-123695.jpg",
},
id: "step4", title: "4. Close on Your Timeline", descriptions: [
"If our offer works for you, we'll proceed with closing on your preferred schedule. We handle all the paperwork and ensure a smooth, private transaction."],
imageSrc: "http://img.b2bpic.net/free-photo/lease-renting-contract-residential-tenant-concept_53876-123695.jpg"},
]}
title="Our Streamlined Process"
description="Selling your property should be simple and transparent. Heres a detailed breakdown of how WH Group Acquisitions makes it happen:"
@@ -103,20 +75,11 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "faq1",
title: "How quickly can you make an offer?",
content: "We can typically provide a fair cash offer within 24-48 hours after reviewing your property information. Our streamlined process ensures speed and efficiency.",
},
id: "faq1", title: "How quickly can you make an offer?", content: "We can typically provide a fair cash offer within 24-48 hours after reviewing your property information. Our streamlined process ensures speed and efficiency."},
{
id: "faq2",
title: "Are there any fees or commissions?",
content: "No, WH Group Acquisitions does not charge any agent fees or commissions. The offer we make is the amount you receive, simplifying the selling process.",
},
id: "faq2", title: "Are there any fees or commissions?", content: "No, WH Group Acquisitions does not charge any agent fees or commissions. The offer we make is the amount you receive, simplifying the selling process."},
{
id: "faq3",
title: "Do I need to make repairs to my property?",
content: "Absolutely not. We buy properties in 'as-is' condition, meaning you don't need to worry about costly repairs, cleaning, or staging. We handle everything.",
},
id: "faq3", title: "Do I need to make repairs to my property?", content: "Absolutely not. We buy properties in 'as-is' condition, meaning you don't need to worry about costly repairs, cleaning, or staging. We handle everything."},
]}
sideTitle="Common Questions About Selling"
sideDescription="Have more questions about our acquisition process? We've got answers to help you understand every step."
@@ -129,16 +92,12 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="WH Group Acquisitions"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}