Merge version_1 into main #1
264
src/app/page.tsx
264
src/app/page.tsx
@@ -10,7 +10,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import { Award, Clock, Home, Leaf, ShieldCheck, Star, Users, Wrench } from "lucide-react";
|
||||
import { Award, Clock, Home, Leaf, ShieldCheck, Star, Users, Wrench, Zap } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,22 +30,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="MAC Home & Lawn Care"
|
||||
/>
|
||||
@@ -53,83 +41,32 @@ export default function LandingPage() {
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Professional Lawn Care That Keeps Your Property Looking Its Best"
|
||||
description="MAC Home & Lawn Care provides reliable, high-quality lawn care and yard maintenance services with a friendly local touch."
|
||||
kpis={[
|
||||
{
|
||||
value: "5.0",
|
||||
label: "Customer Rating",
|
||||
},
|
||||
{
|
||||
value: "23+",
|
||||
label: "Reviews",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
label: "Support",
|
||||
},
|
||||
{ value: "5.0", label: "Customer Rating" },
|
||||
{ value: "23+", label: "Reviews" },
|
||||
{ value: "24/7", label: "Support" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Get a Free Quote", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fallen-leaves-grass-close-up-selective-focus-warm-autumn-evening-park-linden-trees-shore-pond-natural-background_166373-1668.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-senior-couple-with-water-hose_23-2148256621.jpg",
|
||||
alt: "Happy senior couple with water hose",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-smiley-people-greenhouse_23-2149098326.jpg",
|
||||
alt: "Close up smiley people at greenhouse",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pretty-woman-cute-clothes-reaching-plants-greenhouse_197531-12331.jpg",
|
||||
alt: "Pretty woman in cute clothes reaching for plants in greenhouse",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pretty-woman-cute-clothes-reaching-plants-greenhouse_197531-12328.jpg",
|
||||
alt: "Pretty woman in cute clothes reaching for plants in greenhouse",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-taking-care-her-plants-greenhouse_23-2149037271.jpg",
|
||||
alt: "Young woman taking care of her plants in a greenhouse",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-senior-couple-with-water-hose_23-2148256621.jpg", alt: "Happy senior couple with water hose" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-smiley-people-greenhouse_23-2149098326.jpg", alt: "Close up smiley people at greenhouse" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/pretty-woman-cute-clothes-reaching-plants-greenhouse_197531-12331.jpg", alt: "Pretty woman in cute clothes reaching for plants in greenhouse" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/pretty-woman-cute-clothes-reaching-plants-greenhouse_197531-12328.jpg", alt: "Pretty woman in cute clothes reaching for plants in greenhouse" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-woman-taking-care-her-plants-greenhouse_23-2149037271.jpg", alt: "Young woman taking care of her plants in a greenhouse" },
|
||||
]}
|
||||
avatarText="Trusted by over 100+ local homeowners"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Licensed & Insured",
|
||||
icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Eco-Friendly Products",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Local Family Owned",
|
||||
icon: Home,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Professional Equipment",
|
||||
icon: Wrench,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Satisfaction Guaranteed",
|
||||
icon: Award,
|
||||
},
|
||||
{ type: "text-icon", text: "Licensed & Insured", icon: ShieldCheck },
|
||||
{ type: "text-icon", text: "Eco-Friendly Products", icon: Leaf },
|
||||
{ type: "text-icon", text: "Local Family Owned", icon: Home },
|
||||
{ type: "text-icon", text: "Professional Equipment", icon: Wrench },
|
||||
{ type: "text-icon", text: "Satisfaction Guaranteed", icon: Award },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -141,18 +78,9 @@ export default function LandingPage() {
|
||||
title="Trusted Local Lawn Care"
|
||||
description="At MAC Home & Lawn Care, we take pride in helping homeowners keep their lawns and properties clean, healthy, and well-maintained. Whether you need regular mowing, seasonal yard cleanup, trimming, or general lawn maintenance, we bring dependable service and attention to detail to every job. With a strong reputation and a 5.0-star rating from 23 reviews, MAC Home & Lawn Care is a trusted choice for quality outdoor property care."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Dependable Service",
|
||||
description: "Reliable and on-time lawn care every visit.",
|
||||
},
|
||||
{
|
||||
title: "Detail Oriented",
|
||||
description: "We take the extra steps to ensure perfection.",
|
||||
},
|
||||
{
|
||||
title: "Local Expertise",
|
||||
description: "Friendly, professional service tailored to local lawns.",
|
||||
},
|
||||
{ title: "Dependable Service", description: "Reliable and on-time lawn care every visit." },
|
||||
{ title: "Detail Oriented", description: "We take the extra steps to ensure perfection." },
|
||||
{ title: "Local Expertise", description: "Friendly, professional service tailored to local lawns." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/professional-gardener-trimming-hedge-yard_342744-537.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -164,30 +92,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Lawn Mowing",
|
||||
description: "Keep your grass neat, even, and professionally maintained.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardener-standing-near-hedge-with-electric-trimmer-hands_7502-9547.jpg",
|
||||
},
|
||||
{
|
||||
title: "Yard Cleanup",
|
||||
description: "Seasonal cleanups to remove leaves, branches, debris, and overgrowth.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kids-learnign-about-environment_23-2149176599.jpg",
|
||||
},
|
||||
{
|
||||
title: "Trimming & Edging",
|
||||
description: "Clean edges around walkways, driveways, gardens, and outdoor spaces.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-gardener-cuts-bush-with-large-metal-old-pruning-shears_169016-10698.jpg",
|
||||
},
|
||||
{
|
||||
title: "Property Maintenance",
|
||||
description: "Reliable outdoor care to help your home or property stay looking sharp.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grandparents-little-boy-working-garden_23-2148980628.jpg",
|
||||
},
|
||||
{ title: "Lawn Mowing", description: "Keep your grass neat, even, and professionally maintained.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/gardener-standing-near-hedge-with-electric-trimmer-hands_7502-9547.jpg" },
|
||||
{ title: "Yard Cleanup", description: "Seasonal cleanups to remove leaves, branches, debris, and overgrowth.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/kids-learnign-about-environment_23-2149176599.jpg" },
|
||||
{ title: "Trimming & Edging", description: "Clean edges around walkways, driveways, gardens, and outdoor spaces.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/old-gardener-cuts-bush-with-large-metal-old-pruning-shears_169016-10698.jpg" },
|
||||
{ title: "Property Maintenance", description: "Reliable outdoor care to help your home or property stay looking sharp.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/grandparents-little-boy-working-garden_23-2148980628.jpg" },
|
||||
]}
|
||||
title="Our Services"
|
||||
description="Comprehensive outdoor solutions to keep your home looking its best throughout the year."
|
||||
@@ -201,27 +109,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "5.0",
|
||||
title: "Rating",
|
||||
description: "Customer satisfaction",
|
||||
icon: Star,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "24h",
|
||||
title: "Support",
|
||||
description: "Always available",
|
||||
icon: Clock,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "100%",
|
||||
title: "Friendly",
|
||||
description: "Local service",
|
||||
icon: Users,
|
||||
},
|
||||
{ id: "1", value: "5.0", title: "Rating", description: "Customer satisfaction", icon: Star },
|
||||
{ id: "2", value: "24h", title: "Support", description: "Always available", icon: Clock },
|
||||
{ id: "3", value: "100%", title: "Friendly", description: "Local service", icon: Users },
|
||||
]}
|
||||
title="Why Homeowners Choose MAC"
|
||||
description="We deliver results with local expertise and professional care."
|
||||
@@ -233,46 +123,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Exceptional",
|
||||
quote: "Reliable, professional, and friendly.",
|
||||
name: "Sarah J.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-beautiful-blond-hair-gentle-smile-dressed-green-robe-with-belt-is-working-greenhouse_197531-12316.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Great Work",
|
||||
quote: "My lawn has never looked better.",
|
||||
name: "Mike T.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-cheerful-gardener-smiling-posing-plants-flowers_176420-3826.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Quality",
|
||||
quote: "Dependable service every time.",
|
||||
name: "Emily R.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-senior-couple_23-2148256632.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Best in Town",
|
||||
quote: "Professional results and great value.",
|
||||
name: "David K.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-flowers_23-2149871129.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Reliable",
|
||||
quote: "Easy to schedule and always consistent.",
|
||||
name: "Jessica L.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-farmer-working-alone-her-greenhouse_23-2149072079.jpg",
|
||||
},
|
||||
{ id: "1", title: "Exceptional", quote: "Reliable, professional, and friendly.", name: "Sarah J.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-beautiful-blond-hair-gentle-smile-dressed-green-robe-with-belt-is-working-greenhouse_197531-12316.jpg" },
|
||||
{ id: "2", title: "Great Work", quote: "My lawn has never looked better.", name: "Mike T.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-cheerful-gardener-smiling-posing-plants-flowers_176420-3826.jpg" },
|
||||
{ id: "3", title: "Quality", quote: "Dependable service every time.", name: "Emily R.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-senior-couple_23-2148256632.jpg" },
|
||||
{ id: "4", title: "Best in Town", quote: "Professional results and great value.", name: "David K.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-flowers_23-2149871129.jpg" },
|
||||
{ id: "5", title: "Reliable", quote: "Easy to schedule and always consistent.", name: "Jessica L.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-farmer-working-alone-her-greenhouse_23-2149072079.jpg" },
|
||||
]}
|
||||
title="Rated 5.0 Stars by Local Customers"
|
||||
description="Customers trust MAC Home & Lawn Care for dependable service, clean work, and professional results."
|
||||
@@ -285,25 +140,10 @@ export default function LandingPage() {
|
||||
title="Ready to Clean Up Your Lawn?"
|
||||
description="Get in touch today for lawn care, yard cleanup, or property maintenance. Phone: (506) 476-7692. Open 24 Hours."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "How can we help you?",
|
||||
rows: 4,
|
||||
required: true,
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4, required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/successful-man-talking-phone-checking-time_23-2147689192.jpg"
|
||||
buttonText="Call Now"
|
||||
/>
|
||||
@@ -314,32 +154,8 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-vector/landscaping-logo-template-design_742173-15416.jpg"
|
||||
logoText="MAC Home & Lawn Care"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Lawn Mowing",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Yard Cleanup",
|
||||
href: "#services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(506) 476-7692",
|
||||
href: "tel:5064767692",
|
||||
},
|
||||
{
|
||||
label: "Email Us",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Services", items: [{ label: "Lawn Mowing", href: "#services" }, { label: "Yard Cleanup", href: "#services" }] },
|
||||
{ title: "Contact", items: [{ label: "(506) 476-7692", href: "tel:5064767692" }, { label: "Email Us", href: "#contact" }] },
|
||||
]}
|
||||
copyrightText="© 2025 | MAC Home & Lawn Care"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user