Update src/app/page.tsx
This commit is contained in:
330
src/app/page.tsx
330
src/app/page.tsx
@@ -30,106 +30,47 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Process",
|
||||
id: "process",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Process", id: "process" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="KK Removals"
|
||||
button={{
|
||||
text: "Get Free Quote",
|
||||
href: "#contact",
|
||||
}}
|
||||
button={{ text: "Get Free Quote", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "rotated-rays-static-grid",
|
||||
}}
|
||||
background={{ variant: "rotated-rays-static-grid" }}
|
||||
title="Move Without the Stress."
|
||||
description="Professional, reliable and affordable removals across Melbourne and interstate."
|
||||
kpis={[
|
||||
{
|
||||
value: "4.4",
|
||||
label: "Customer Rating",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Insured",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
label: "Support",
|
||||
},
|
||||
{ value: "4.4", label: "Customer Rating" },
|
||||
{ value: "100%", label: "Insured" },
|
||||
{ value: "24/7", label: "Support" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Call 0475 444 224",
|
||||
href: "tel:0475444224",
|
||||
},
|
||||
{ text: "Get Free Quote", href: "#contact" },
|
||||
{ text: "Call 0475 444 224", href: "tel:0475444224" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-holding-cardboard-box_23-2149445747.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-holding-cardboard-box_23-2149445747.jpg"
|
||||
imageAlt="Professional movers handling furniture with care"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-delivery-man-with-parcel-holding-digital-tablet_23-2147862225.jpg",
|
||||
alt: "Close-up of delivery man with parcel holding digital tablet",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-volunteers-with-boxes_23-2149196092.jpg",
|
||||
alt: "Medium shot volunteers with boxes",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-delivery-men-moving-objects-out-car_23-2148944549.jpg",
|
||||
alt: "Young delivery men moving objects out of car",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/delivery-man-loading-car-with-delivery-boxes_23-2148944599.jpg",
|
||||
alt: "Delivery man loading car with delivery boxes",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/diverse-couple-moving-together-unpacking-furniture-new-home-feeling-happy-about-house-relocation-investment-new-beginnings-apartment-flat-bought-mortgage-loan_482257-44298.jpg",
|
||||
alt: "Diverse couple moving in together",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-delivery-man-with-parcel-holding-digital-tablet_23-2147862225.jpg", alt: "Close-up of delivery man with parcel holding digital tablet" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-volunteers-with-boxes_23-2149196092.jpg", alt: "Medium shot volunteers with boxes" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-delivery-men-moving-objects-out-car_23-2148944549.jpg", alt: "Young delivery men moving objects out of car" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/delivery-man-loading-car-with-delivery-boxes_23-2148944599.jpg", alt: "Delivery man loading car with delivery boxes" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/diverse-couple-moving-together-unpacking-furniture-new-home-feeling-happy-about-house-relocation-investment-new-beginnings-apartment-flat-bought-mortgage-loan_482257-44298.jpg", alt: "Diverse couple moving in together" },
|
||||
]}
|
||||
avatarText="Trusted by 5,000+ families"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Fully Licensed & Insured",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Melbourne Expert Team",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Transparent Pricing",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "7 Days a Week Service",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Professional Packing Experts",
|
||||
},
|
||||
{ type: "text", text: "Fully Licensed & Insured" },
|
||||
{ type: "text", text: "Melbourne Expert Team" },
|
||||
{ type: "text", text: "Transparent Pricing" },
|
||||
{ type: "text", text: "7 Days a Week Service" },
|
||||
{ type: "text", text: "Professional Packing Experts" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -138,15 +79,7 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Google Reviews",
|
||||
"Trustpilot",
|
||||
"A-List Moving",
|
||||
"Verified Pros",
|
||||
"Melbourne Business",
|
||||
"Local Experts",
|
||||
"Premium Care",
|
||||
]}
|
||||
names={["Google Reviews", "Trustpilot", "A-List Moving", "Verified Pros", "Melbourne Business", "Local Experts", "Premium Care"]}
|
||||
title="Trusted by our community"
|
||||
description="Don't just take our word for it—our customers love the care we put into every move."
|
||||
/>
|
||||
@@ -159,65 +92,33 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Local Moves",
|
||||
description: "Smooth and efficient moves across Melbourne suburbs.",
|
||||
icon: Home,
|
||||
title: "Local Moves", description: "Smooth and efficient moves across Melbourne suburbs.", icon: Home,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/this-is-perfect-spot-out-new-armchair_637285-12298.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-carrying-cardboard-boxes_23-2148460906.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-cardboard-box_23-2149445747.jpg?_wi=2",
|
||||
imageAlt: "luxury moving company professional staff",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/this-is-perfect-spot-out-new-armchair_637285-12298.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/adult-man-woman-carrying-cardboard-boxes_23-2148460906.jpg" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Interstate Moves",
|
||||
description: "Melbourne to Brisbane, Sydney & beyond — handled with care.",
|
||||
icon: Truck,
|
||||
title: "Interstate Moves", description: "Melbourne to Brisbane, Sydney & beyond — handled with care.", icon: Truck,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-posing-near-woman-painting-wall_23-2147758730.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-making-home-comfortable_23-2149092121.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg?_wi=1",
|
||||
imageAlt: "luxury moving company professional staff",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-posing-near-woman-painting-wall_23-2147758730.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-making-home-comfortable_23-2149092121.jpg" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Packing & Unpacking",
|
||||
description: "We protect every item like it’s our own.",
|
||||
icon: Box,
|
||||
title: "Packing & Unpacking", description: "We protect every item like it’s our own.", icon: Box,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-delivery-men-taking-break-near-delivery-car_23-2148944595.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-from-delivery-service-arriving-with-boxes-documents-be-signed-beautiful-young-couple-moving_482257-22217.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-talking-phone_23-2148230757.jpg?_wi=1",
|
||||
imageAlt: "luxury moving company professional staff",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-delivery-men-taking-break-near-delivery-car_23-2148944595.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-from-delivery-service-arriving-with-boxes-documents-be-signed-beautiful-young-couple-moving_482257-22217.jpg" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Office Relocations",
|
||||
description: "Fast, organised business moves with minimal downtime.",
|
||||
icon: Building,
|
||||
title: "Office Relocations", description: "Fast, organised business moves with minimal downtime.", icon: Building,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-shirt-with-dots_23-2148539815.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-home-with-boxes-ladder-getting-ready-move-out_23-2148647495.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-portrait-beautiful-positive-young-european-female-blue-shirt-dress-relaxing-home-looking-front-with-easy-carefree-smile_343059-3894.jpg?_wi=1",
|
||||
imageAlt: "luxury moving company professional staff",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-holding-shirt-with-dots_23-2148539815.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-home-with-boxes-ladder-getting-ready-move-out_23-2148647495.jpg" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
title="Our Services"
|
||||
description="Premium removalist solutions tailored to your specific needs, from local apartments to interstate offices."
|
||||
@@ -240,65 +141,33 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Request a Quote",
|
||||
description: "Quick form or phone call to get started.",
|
||||
icon: FileText,
|
||||
title: "Request a Quote", description: "Quick form or phone call to get started.", icon: FileText,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-couple-packing-cardboard-box-home_23-2148060057.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-moving-into-new-house_53876-48891.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-cardboard-box_23-2149445747.jpg?_wi=3",
|
||||
imageAlt: "luxury moving company professional staff",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-couple-packing-cardboard-box-home_23-2148060057.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/couple-moving-into-new-house_53876-48891.jpg" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "We Plan Your Move",
|
||||
description: "Clear communication, no confusion.",
|
||||
icon: Calendar,
|
||||
title: "We Plan Your Move", description: "Clear communication, no confusion.", icon: Calendar,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-delivery-man-with-box_23-2148593069.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-carrying-box_23-2147758706.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg?_wi=2",
|
||||
imageAlt: "luxury moving company professional staff",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-delivery-man-with-box_23-2148593069.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-woman-carrying-box_23-2147758706.jpg" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Moving Day",
|
||||
description: "On-time, careful, efficient execution.",
|
||||
icon: Truck,
|
||||
title: "Moving Day", description: "On-time, careful, efficient execution.", icon: Truck,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-buying-new-house-asian-woman-african-man-signing-documents-new-home_1157-47970.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-handling-belongings-cardboard-boxes-moving-new-house_23-2149086805.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-talking-phone_23-2148230757.jpg?_wi=2",
|
||||
imageAlt: "luxury moving company professional staff",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-couple-buying-new-house-asian-woman-african-man-signing-documents-new-home_1157-47970.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-handling-belongings-cardboard-boxes-moving-new-house_23-2149086805.jpg" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Settle In Stress-Free",
|
||||
description: "Everything delivered safely to your new space.",
|
||||
icon: CheckCircle,
|
||||
title: "Settle In Stress-Free", description: "Everything delivered safely to your new space.", icon: CheckCircle,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-together-african-american-couple-with-cardboard-boxes_1157-40330.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-buying-new-house-asian-woman-african-man-signing-documents-new-home_1157-47958.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-portrait-beautiful-positive-young-european-female-blue-shirt-dress-relaxing-home-looking-front-with-easy-carefree-smile_343059-3894.jpg?_wi=2",
|
||||
imageAlt: "luxury moving company professional staff",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-together-african-american-couple-with-cardboard-boxes_1157-40330.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-couple-buying-new-house-asian-woman-african-man-signing-documents-new-home_1157-47958.jpg" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
title="How It Works"
|
||||
description="A seamless four-step process to get you from your old home to your new one without the headache."
|
||||
@@ -311,46 +180,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
handle: "@sarahj",
|
||||
testimonial: "It was a full on hassle free move… communication was good.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
handle: "@mchen",
|
||||
testimonial: "They handled heavy furniture easily and were very polite.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-talking-phone_23-2148230757.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez",
|
||||
handle: "@emilyrod",
|
||||
testimonial: "Excellent team! Everything arrived safely.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-portrait-beautiful-positive-young-european-female-blue-shirt-dress-relaxing-home-looking-front-with-easy-carefree-smile_343059-3894.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Kim",
|
||||
handle: "@dkim",
|
||||
testimonial: "Best service in Melbourne, highly recommend.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-break_1098-14791.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica Lee",
|
||||
handle: "@jlee",
|
||||
testimonial: "Professional, efficient, and great price.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17097.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah Johnson", handle: "@sarahj", testimonial: "It was a full on hassle free move… communication was good.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg" },
|
||||
{ id: "2", name: "Michael Chen", handle: "@mchen", testimonial: "They handled heavy furniture easily and were very polite.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-talking-phone_23-2148230757.jpg" },
|
||||
{ id: "3", name: "Emily Rodriguez", handle: "@emilyrod", testimonial: "Excellent team! Everything arrived safely.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/horizontal-portrait-beautiful-positive-young-european-female-blue-shirt-dress-relaxing-home-looking-front-with-easy-carefree-smile_343059-3894.jpg" },
|
||||
{ id: "4", name: "David Kim", handle: "@dkim", testimonial: "Best service in Melbourne, highly recommend.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/coffee-break_1098-14791.jpg" },
|
||||
{ id: "5", name: "Jessica Lee", handle: "@jlee", testimonial: "Professional, efficient, and great price.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17097.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Our Clients Say"
|
||||
@@ -361,19 +195,11 @@ export default function LandingPage() {
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Ready to Move Without the Headache?"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:0475444224",
|
||||
},
|
||||
{ text: "Get Free Quote", href: "#contact" },
|
||||
{ text: "Call Now", href: "tel:0475444224" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -391,29 +217,15 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Process",
|
||||
href: "#process",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Process", href: "#process" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -424,4 +236,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user