Merge version_1 into main #4

Merged
bender merged 1 commits from version_1 into main 2026-03-23 21:11:53 +00:00

View File

@@ -3,9 +3,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterBase from '@/components/sections/footer/FooterBase';
import FeatureIconCard from '@/components/sections/feature/FeatureIconCard';
import { Handshake, FileCheck } from "lucide-react";
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function LandingPage() {
return (
@@ -36,43 +35,66 @@ export default function LandingPage() {
/>
</div>
<div id="feature-icons" data-section="feature-icons">
<FeatureIconCard
title="Simplified Selling Process"
description="We make it easy to sell your house fast."
<div id="features" data-section="features">
<FeatureCardOne
title="How We Make Selling Easy & Fair"
description="We simplify the process, offering a fast, fair, and hassle-free solution. Selling your home to us is designed to be quick and easy, with no traditional showings, no repairs, and no commissions. Here's how it works and why homeowners choose us:"
features={[
{
icon: Handshake,
title: "Fair Cash Offer", description: "Get a no-obligation, competitive cash offer for your home."
title: "Submit Your Property", description: "Fill out our simple form or give us a call with details about your property.", imageSrc: "http://img.b2bpic.net/free-vector/appointment-booking-with-smartphone_23-2148564871.jpg", imageAlt: "Submit property icon"
},
{
icon: FileCheck,
title: "Quick Closing", description: "Close on your timeline, often in as little as 7-14 days."
title: "Get a Cash Offer", description: "We evaluate your property and present you with a fair, no-obligation cash offer.", imageSrc: "http://img.b2bpic.net/free-vector/business-growth-money-savings-statistics_24877-49819.jpg", imageAlt: "Cash offer illustration"
},
{
title: "Close On Your Timeline", description: "If you accept, we close on the date that works best for you, often in as little as 7-14 days.", imageSrc: "http://img.b2bpic.net/free-vector/appointment-booking-landing-page_23-2148559971.jpg", imageAlt: "Calendar icon for closing date"
},
{
title: "No Repairs Required", description: "Sell your house as-is. We handle all necessary repairs and renovations after purchase."
},
{
title: "No Realtor Fees", description: "Avoid commissions and hidden fees. Our offer is the cash you receive."
},
{
title: "Fast Closings", description: "Need to sell quickly? We can close in as little as 7-14 days, tailored to your schedule."
},
{
title: "We Buy Houses As-Is", description: "Regardless of condition, age, or situation, we buy houses in any state, saving you time and money."
}
]}
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterSimple
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "How It Works", href: "/how-it-works" },
{ label: "Sell Your House Fast", href: "/sell-your-house-fast" }
{ label: "How It Works", href: "/#how-it-works" },
{ label: "Careers", href: "#" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "/faq" },
{ label: "Contact Us", href: "/contact" },
{ label: "Privacy Policy", href: "/privacy" }
title: "Services", items: [
{ label: "Sell Your House Fast", href: "/sell-your-house-fast" },
{ label: "Service Areas", href: "/sell-your-house-fast" },
{ label: "FAQ", href: "/faq" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
]}
logoText="Property Whale"
copyrightText="© 2024 Property Whale. All rights reserved."
bottomLeftText="© 2024 Property Whale. All rights reserved."
bottomRightText="Made with ❤️"
/>
</div>
</ReactLenis>