Merge version_6 into main #17

Merged
bender merged 1 commits from version_6 into main 2026-03-24 13:27:52 +00:00

View File

@@ -1,3 +1,5 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -11,7 +13,8 @@ import ButtonElasticEffect from '@/components/button/ButtonElasticEffect/ButtonE
import { Phone, Mail } from "lucide-react";
export const metadata = {
title: "Contact Property Whale", description: "Contact Property Whale to sell your house fast for cash. Get a no-obligation offer or ask questions about our quick home selling process."};
title: "Contact Property Whale", description: "Contact Property Whale to sell your house fast for cash. Get a no-obligation offer or ask questions about our quick home selling process."
};
export default function ContactUsPage() {
return (
@@ -140,15 +143,25 @@ export default function ContactUsPage() {
description="We're committed to a transparent, fair, and hassle-free process. Your peace of mind is our priority."
features={[
{
title: "We buy houses in any condition", description: "Sell your property exactly as-is. We handle all types of properties, from perfect to distressed, without you needing to do any repairs.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=1", videoAriaLabel: "A short video clip illustrating the feature"},
title: "We buy houses in any condition", description: "Sell your property exactly as-is. We handle all types of properties, from perfect to distressed, without you needing to do any repairs.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=1", // Using placeholder
videoAriaLabel: "A short video clip illustrating the feature"
},
{
title: "No realtor commissions", description: "Forget about hefty agent fees. When you sell to us, you avoid all commissions, maximizing the cash you receive.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=2", videoAriaLabel: "A short video clip illustrating the feature"},
title: "No realtor commissions", description: "Forget about hefty agent fees. When you sell to us, you avoid all commissions, maximizing the cash you receive.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=2", // Using placeholder
videoAriaLabel: "A short video clip illustrating the feature"
},
{
title: "No repairs required", description: "Leave the hammers and paint brushes behind. We take on all necessary repairs and renovations after purchase, saving you time and money.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=3", videoAriaLabel: "A short video clip illustrating the feature"},
title: "No repairs required", description: "Leave the hammers and paint brushes behind. We take on all necessary repairs and renovations after purchase, saving you time and money.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=3", // Using placeholder
videoAriaLabel: "A short video clip illustrating the feature"
},
{
title: "Close on your timeline", description: "Whether you need to sell in a week or prefer a later date, we work around your schedule to ensure a convenient closing.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=4", videoAriaLabel: "A short video clip illustrating the feature"},
title: "Close on your timeline", description: "Whether you need to sell in a week or prefer a later date, we work around your schedule to ensure a convenient closing.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=4", // Using placeholder
videoAriaLabel: "A short video clip illustrating the feature"
},
{
title: "Simple and transparent process", description: "Our entire home buying process is straightforward, easy to understand, and free from hidden clauses or surprises.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=5", videoAriaLabel: "A short video clip illustrating the feature"},
title: "Simple and transparent process", description: "Our entire home buying process is straightforward, easy to understand, and free from hidden clauses or surprises.", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4?_wi=5", // Using placeholder
videoAriaLabel: "A short video clip illustrating the feature"
}
]}
/>
</div>
@@ -160,7 +173,8 @@ export default function ContactUsPage() {
text="Get Your No-Obligation Cash Offer Today"
buttons={[
{
text: "Call 715-409-1863", href: "tel:7154091863"},
text: "Call 715-409-1863", href: "tel:7154091863"
}
]}
/>
</div>
@@ -190,4 +204,4 @@ export default function ContactUsPage() {
</ReactLenis>
</ThemeProvider>
);
}
}