3 Commits

Author SHA1 Message Date
d3f754c164 Merge version_5 into main
Merge version_5 into main
2026-04-15 19:57:39 +00:00
c87dca13fd Update src/app/contact/page.tsx 2026-04-15 19:57:33 +00:00
1085411d19 Merge version_4 into main
Merge version_4 into main
2026-04-15 19:56:43 +00:00

View File

@@ -2,7 +2,6 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
@@ -26,54 +25,18 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Husky Haulers"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Ready to Move?"
description="Call us at (561) 878-1195 or fill out the form for immediate service."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Your Phone",
required: true,
},
]}
textarea={{
name: "details",
placeholder: "Move Details / Date",
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/pleased-young-bald-call-center-man-wearing-headset-sitting-desk-with-work-tools-putting-finger-cheek-isolated-white-background_141793-84113.jpg"
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="default"
@@ -81,12 +44,7 @@ export default function LandingPage() {
title="Trusted By Industry Leaders"
description="We are proud partners with regional property management firms."
names={[
"Apex Realty",
"Downtown Condos",
"City Logistics",
"Blue Horizon Properties",
"Urban Living",
]}
"Apex Realty", "Downtown Condos", "City Logistics", "Blue Horizon Properties", "Urban Living"]}
/>
</div>
@@ -95,33 +53,21 @@ export default function LandingPage() {
logoText="Husky Haulers"
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Residential",
href: "/services",
},
label: "Residential", href: "/services"},
{
label: "Commercial",
href: "/services",
},
label: "Commercial", href: "/services"},
{
label: "Packing",
href: "/services",
},
label: "Packing", href: "/services"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
]}
@@ -130,4 +76,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}