Compare commits
27 Commits
version_1
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| b878652568 | |||
| 787c21b9dc | |||
| bb1ac125c8 | |||
| 89ae15a7a7 | |||
| a9a6d429bc | |||
| 64ffb23daa | |||
| 07a0acfd8e | |||
| 42a96ad0ee | |||
| cab6ead88e | |||
| 920586f4d2 | |||
| ad975e94cb | |||
| 8ced86018b | |||
| c335a3811c | |||
| 6666e9c708 | |||
| 1b5bca474b | |||
| cc051d7601 | |||
| 0236dbd34e | |||
| 9b888a4d02 | |||
| 86a46052e2 | |||
| 49f09b4231 | |||
| 222e151b73 | |||
| 2a6f99f7fb | |||
| 877c2be1df | |||
| 760653f018 | |||
| 8609cd8e3f | |||
| 7e30acf61a | |||
| 14460a1ffe |
105
src/app/about/page.tsx
Normal file
105
src/app/about/page.tsx
Normal file
@@ -0,0 +1,105 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Portfolio", id: "/#portfolio"},
|
||||
{
|
||||
name: "Testimonials", id: "/#testimonials"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Lombard Landscaping by Morris LDC"
|
||||
button={{
|
||||
text: "Get a Free Quote", href: "/contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-content" data-section="about-content">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="About Lombard Landscaping by Morris LDC"
|
||||
description="Lombard Landscaping by Morris LDC provides exceptional lawn care services in Lombard, Illinois. This local business specializes in enhancing outdoor spaces through meticulous lawn maintenance, landscape design, and seasonal clean-up. With a commitment to quality, the team ensures that every lawn looks its best, contributing to the overall beauty of the community. The company employs skilled professionals who understand the unique needs of lawns in the Lombard area. Services include mowing, fertilization, aeration, and weed control, all tailored to promote healthy grass growth and vibrant landscapes. Lombard Landscaping by Morris LDC stands out due to its customer-focused approach, ensuring that each project meets the specific requirements of clients. Community feedback highlights the reliability and professionalism of Lombard Landscaping by Morris LDC. Many clients appreciate the attention to detail and the use of environmentally friendly practices. The team’s dedication to customer satisfaction is evident in their consistent performance and positive reviews, making them a trusted choice for lawn care in the region. Lombard Landscaping by Morris LDC offers comprehensive lawn care services that enhance outdoor aesthetics while ensuring the health of the landscape. The business's commitment to quality and customer service builds strong relationships within the community. Reach out to Lombard Landscaping by Morris LDC for expert lawn care services in Lombard, Illinois."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/senior-couple-harvesting-carrots_23-2148256687.jpg?_wi=2"
|
||||
imageAlt="Lombard Landscaping team working in a garden"
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us", href: "/contact",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Design & Planning", href: "/services"},
|
||||
{
|
||||
label: "Installation", href: "/services"},
|
||||
{
|
||||
label: "Maintenance", href: "/services"},
|
||||
{
|
||||
label: "Outdoor Living", href: "/#portfolio"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Portfolio", href: "/#portfolio"},
|
||||
{
|
||||
label: "Testimonials", href: "/#testimonials"},
|
||||
{
|
||||
label: "FAQ", href: "/#faq"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Get a Quote", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Lombard Landscaping by Morris LDC. All rights reserved."
|
||||
bottomRightText="Crafted with passion for nature."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
104
src/app/contact/page.tsx
Normal file
104
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,104 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Portfolio", id: "/#portfolio"},
|
||||
{
|
||||
name: "Testimonials", id: "/#testimonials"},
|
||||
{
|
||||
name: "Contact", id: "/contact"}
|
||||
]}
|
||||
brandName="Lombard Landscaping by Morris LDC"
|
||||
button={{
|
||||
text: "Get a Free Quote", href: "/contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-content" data-section="contact-content">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "downward-rays-animated"}}
|
||||
text="Ready to Transform Your Landscape? Contact Us!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Us Now", href: "tel:630-661-6168"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Design & Planning", href: "/services"},
|
||||
{
|
||||
label: "Installation", href: "/services"},
|
||||
{
|
||||
label: "Maintenance", href: "/services"},
|
||||
{
|
||||
label: "Outdoor Living", href: "/#portfolio"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Portfolio", href: "/#portfolio"},
|
||||
{
|
||||
label: "Testimonials", href: "/#testimonials"},
|
||||
{
|
||||
label: "FAQ", href: "/#faq"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Get a Quote", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Lombard Landscaping by Morris LDC. All rights reserved."
|
||||
bottomRightText="Crafted with passion for nature."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
311
src/app/page.tsx
311
src/app/page.tsx
@@ -34,35 +34,21 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#home",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "#portfolio",
|
||||
},
|
||||
name: "Portfolio", id: "#portfolio"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Lombard Landscaping by Morris LDC"
|
||||
button={{
|
||||
text: "Get a Free Quote",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Get a Free Quote", href: "/contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -70,67 +56,42 @@ export default function LandingPage() {
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "downward-rays-static",
|
||||
}}
|
||||
variant: "downward-rays-static"}}
|
||||
title="Transform Your Outdoors with Lombard Landscaping"
|
||||
description="Creating breathtaking landscapes and outdoor living spaces tailored to your vision and lifestyle. Experience unparalleled beauty and functionality."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Consultation",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get a Free Consultation", href: "/contact"},
|
||||
{
|
||||
text: "View Our Portfolio",
|
||||
href: "#portfolio",
|
||||
},
|
||||
text: "View Our Portfolio", href: "#portfolio"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-modern-plants-deco_23-2149198591.jpg"
|
||||
imageAlt="Lush green landscaped garden with a modern patio"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-blue-shirt-playing-with-cute-kitty_1157-32607.jpg",
|
||||
alt: "Happy client enjoying their garden",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-blue-shirt-playing-with-cute-kitty_1157-32607.jpg", alt: "Happy client enjoying their garden"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-walking-romantic-happy-holidays-holding-hand-boyfriend-following-her_1150-4660.jpg",
|
||||
alt: "Satisfied homeowner in newly landscaped yard",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-walking-romantic-happy-holidays-holding-hand-boyfriend-following-her_1150-4660.jpg", alt: "Satisfied homeowner in newly landscaped yard"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/traveller-explores-rugged-landscape-iceland_346278-307.jpg",
|
||||
alt: "Client impressed with outdoor transformation",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/traveller-explores-rugged-landscape-iceland_346278-307.jpg", alt: "Client impressed with outdoor transformation"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-with-plants-frame_23-2148928485.jpg",
|
||||
alt: "Homeowner relaxing in their beautiful new space",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-with-plants-frame_23-2148928485.jpg", alt: "Homeowner relaxing in their beautiful new space"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/family-reunion-celebrating-winter_23-2149628457.jpg",
|
||||
alt: "Family enjoying their custom designed outdoor area",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/family-reunion-celebrating-winter_23-2149628457.jpg", alt: "Family enjoying their custom designed outdoor area"},
|
||||
]}
|
||||
avatarText="Join 500+ Happy Clients!"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Innovative Designs",
|
||||
},
|
||||
type: "text", text: "Innovative Designs"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Expert Craftsmanship",
|
||||
},
|
||||
type: "text", text: "Expert Craftsmanship"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Sustainable Solutions",
|
||||
},
|
||||
type: "text", text: "Sustainable Solutions"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Customer Satisfaction",
|
||||
},
|
||||
type: "text", text: "Customer Satisfaction"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Award-Winning Service",
|
||||
},
|
||||
type: "text", text: "Award-Winning Service"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -142,11 +103,9 @@ export default function LandingPage() {
|
||||
description="Lombard Landscaping by Morris LDC is dedicated to delivering exceptional landscaping services. Our team of experienced professionals combines creativity with precision to design, install, and maintain outdoor spaces that reflect your unique style and enhance your property's value. We pride ourselves on attention to detail and customer satisfaction, ensuring every project exceeds expectations."
|
||||
buttons={[
|
||||
{
|
||||
text: "Our Story",
|
||||
href: "#",
|
||||
},
|
||||
text: "Our Story", href: "/about"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/senior-couple-harvesting-carrots_23-2148256687.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/senior-couple-harvesting-carrots_23-2148256687.jpg?_wi=1"
|
||||
imageAlt="Team of landscapers working together on a garden project"
|
||||
/>
|
||||
</div>
|
||||
@@ -158,23 +117,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Landscape Design & Planning",
|
||||
description: "Creative and functional designs tailored to your aesthetic preferences and property's potential.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/landscape-courtyard-monastery_1268-15252.jpg",
|
||||
imageAlt: "Landscape design blueprint and sketch",
|
||||
},
|
||||
title: "Landscape Design & Planning", description: "Creative and functional designs tailored to your aesthetic preferences and property's potential.", imageSrc: "http://img.b2bpic.net/free-photo/landscape-courtyard-monastery_1268-15252.jpg", imageAlt: "Landscape design blueprint and sketch"},
|
||||
{
|
||||
title: "Installation & Construction",
|
||||
description: "Expert execution of patios, walkways, planting, water features, and outdoor living areas.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-science-assistant-agricultural-officer-greenhouse-farm-research-melon_1150-10614.jpg",
|
||||
imageAlt: "Landscaping crew installing plants",
|
||||
},
|
||||
title: "Installation & Construction", description: "Expert execution of patios, walkways, planting, water features, and outdoor living areas.", imageSrc: "http://img.b2bpic.net/free-photo/woman-science-assistant-agricultural-officer-greenhouse-farm-research-melon_1150-10614.jpg", imageAlt: "Landscaping crew installing plants"},
|
||||
{
|
||||
title: "Garden Maintenance",
|
||||
description: "Seasonal clean-ups, pruning, mowing, and ongoing care to keep your garden pristine year-round.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-middle-aged-gardener-holding-small-thuja-pot-bearded-garden-worker-glasses-wearing-blue-shirt-apron-growing-evergreen-plants-greenhouse-commercial-gardening-summer-concept_74855-12936.jpg",
|
||||
imageAlt: "Gardener mowing a lush lawn",
|
||||
},
|
||||
title: "Garden Maintenance", description: "Seasonal clean-ups, pruning, mowing, and ongoing care to keep your garden pristine year-round.", imageSrc: "http://img.b2bpic.net/free-photo/pensive-middle-aged-gardener-holding-small-thuja-pot-bearded-garden-worker-glasses-wearing-blue-shirt-apron-growing-evergreen-plants-greenhouse-commercial-gardening-summer-concept_74855-12936.jpg", imageAlt: "Gardener mowing a lush lawn"},
|
||||
]}
|
||||
title="Our Comprehensive Landscaping Services"
|
||||
description="From innovative design to meticulous maintenance, we offer a full spectrum of services to bring your outdoor vision to life."
|
||||
@@ -189,53 +136,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Modern Patio Oasis",
|
||||
price: "Custom Quote",
|
||||
variant: "Residential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/contrasting-outdoor-texture-design_23-2149756529.jpg",
|
||||
imageAlt: "A modern patio with elegant outdoor furniture and landscaping.",
|
||||
},
|
||||
id: "p1", name: "Modern Patio Oasis", price: "Custom Quote", variant: "Residential", imageSrc: "http://img.b2bpic.net/free-photo/contrasting-outdoor-texture-design_23-2149756529.jpg", imageAlt: "A modern patio with elegant outdoor furniture and landscaping."},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Vibrant Flower Garden",
|
||||
price: "Custom Quote",
|
||||
variant: "Residential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-garden-flower_74190-1864.jpg",
|
||||
imageAlt: "A vibrant flower garden with a variety of colorful blooms.",
|
||||
},
|
||||
id: "p2", name: "Vibrant Flower Garden", price: "Custom Quote", variant: "Residential", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-garden-flower_74190-1864.jpg", imageAlt: "A vibrant flower garden with a variety of colorful blooms."},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Luxury Pool Surround",
|
||||
price: "Custom Quote",
|
||||
variant: "Residential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-infinity-swimming-pool-hotel-resort-with-sea-ocean-view-white-cloud-blue-sky_74190-9029.jpg",
|
||||
imageAlt: "A luxurious swimming pool area with professional landscaping.",
|
||||
},
|
||||
id: "p3", name: "Luxury Pool Surround", price: "Custom Quote", variant: "Residential", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-infinity-swimming-pool-hotel-resort-with-sea-ocean-view-white-cloud-blue-sky_74190-9029.jpg", imageAlt: "A luxurious swimming pool area with professional landscaping."},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Illuminated Pathways",
|
||||
price: "Custom Quote",
|
||||
variant: "Commercial",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shaped-wooden-background_1421-298.jpg",
|
||||
imageAlt: "A garden path beautifully illuminated with landscape lighting.",
|
||||
},
|
||||
id: "p4", name: "Illuminated Pathways", price: "Custom Quote", variant: "Commercial", imageSrc: "http://img.b2bpic.net/free-photo/shaped-wooden-background_1421-298.jpg", imageAlt: "A garden path beautifully illuminated with landscape lighting."},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Tranquil Water Feature",
|
||||
price: "Custom Quote",
|
||||
variant: "Residential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-ocean-waves-crashing-against-rugged-coastal-rocks_1308-189343.jpg",
|
||||
imageAlt: "A tranquil water feature integrated into a garden landscape.",
|
||||
},
|
||||
id: "p5", name: "Tranquil Water Feature", price: "Custom Quote", variant: "Residential", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-ocean-waves-crashing-against-rugged-coastal-rocks_1308-189343.jpg", imageAlt: "A tranquil water feature integrated into a garden landscape."},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Smart Irrigation System",
|
||||
price: "Custom Quote",
|
||||
variant: "Residential",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-taking-photos_23-2149098305.jpg",
|
||||
imageAlt: "An advanced irrigation system ensuring lush greenery.",
|
||||
},
|
||||
id: "p6", name: "Smart Irrigation System", price: "Custom Quote", variant: "Residential", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-taking-photos_23-2149098305.jpg", imageAlt: "An advanced irrigation system ensuring lush greenery."},
|
||||
]}
|
||||
title="Explore Our Latest Projects"
|
||||
description="A showcase of our diverse portfolio, highlighting stunning transformations and intricate designs."
|
||||
@@ -250,50 +161,20 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah J.",
|
||||
handle: "@HomeownerSarah",
|
||||
testimonial: "Lombard Landscaping completely transformed our backyard into a stunning oasis. Their attention to detail and creative vision were exceptional!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1676.jpg",
|
||||
imageAlt: "Happy client Sarah J.",
|
||||
},
|
||||
id: "t1", name: "Sarah J.", handle: "@HomeownerSarah", testimonial: "Lombard Landscaping completely transformed our backyard into a stunning oasis. Their attention to detail and creative vision were exceptional!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1676.jpg", imageAlt: "Happy client Sarah J."},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Michael D.",
|
||||
handle: "@BusinessOwnerMD",
|
||||
testimonial: "Professional, reliable, and incredibly talented. Morris LDC made our commercial property's landscaping truly stand out. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/feeling-happy-surprised-proud-pointing-self-with-excited-amazed-look_1194-633474.jpg",
|
||||
imageAlt: "Satisfied client Michael D.",
|
||||
},
|
||||
id: "t2", name: "Michael D.", handle: "@BusinessOwnerMD", testimonial: "Professional, reliable, and incredibly talented. Morris LDC made our commercial property's landscaping truly stand out. Highly recommended!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/feeling-happy-surprised-proud-pointing-self-with-excited-amazed-look_1194-633474.jpg", imageAlt: "Satisfied client Michael D."},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily R.",
|
||||
handle: "@GardenLoverEmily",
|
||||
testimonial: "Our new garden is beyond what we imagined. The team was a pleasure to work with, and their expertise is evident in every detail.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/loving-couple-picnic-after-bicycle-ride-park_613910-8266.jpg",
|
||||
imageAlt: "Delighted client Emily R.",
|
||||
},
|
||||
id: "t3", name: "Emily R.", handle: "@GardenLoverEmily", testimonial: "Our new garden is beyond what we imagined. The team was a pleasure to work with, and their expertise is evident in every detail.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/loving-couple-picnic-after-bicycle-ride-park_613910-8266.jpg", imageAlt: "Delighted client Emily R."},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David L.",
|
||||
handle: "@DeveloperDavid",
|
||||
testimonial: "As a property developer, I rely on top-tier landscaping. Lombard Landscaping consistently delivers high-quality, impactful results on time and budget.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rear-view-man-taking-picture-flowing-river_23-2148187292.jpg",
|
||||
imageAlt: "Property developer David L.",
|
||||
},
|
||||
id: "t4", name: "David L.", handle: "@DeveloperDavid", testimonial: "As a property developer, I rely on top-tier landscaping. Lombard Landscaping consistently delivers high-quality, impactful results on time and budget.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rear-view-man-taking-picture-flowing-river_23-2148187292.jpg", imageAlt: "Property developer David L."},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Jessica M.",
|
||||
handle: "@FamilyHomeJM",
|
||||
testimonial: "Our family now spends so much more time outdoors thanks to our beautiful new patio and garden. It's truly a dream come true!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pregnant-family-with-two-sons-dressed-turquoise-clothes-sitting-grass-with-flowers-park_627829-12212.jpg",
|
||||
imageAlt: "Happy family member Jessica M.",
|
||||
},
|
||||
id: "t5", name: "Jessica M.", handle: "@FamilyHomeJM", testimonial: "Our family now spends so much more time outdoors thanks to our beautiful new patio and garden. It's truly a dream come true!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pregnant-family-with-two-sons-dressed-turquoise-clothes-sitting-grass-with-flowers-park_627829-12212.jpg", imageAlt: "Happy family member Jessica M."},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Hear From Our Happy Clients"
|
||||
@@ -308,23 +189,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: Award,
|
||||
title: "Years in Business",
|
||||
value: "18+",
|
||||
},
|
||||
id: "m1", icon: Award,
|
||||
title: "Years in Business", value: "18+"},
|
||||
{
|
||||
id: "m2",
|
||||
icon: Users,
|
||||
title: "Satisfied Clients",
|
||||
value: "500+",
|
||||
},
|
||||
id: "m2", icon: Users,
|
||||
title: "Satisfied Clients", value: "500+"},
|
||||
{
|
||||
id: "m3",
|
||||
icon: Sparkles,
|
||||
title: "Projects Completed",
|
||||
value: "750+",
|
||||
},
|
||||
id: "m3", icon: Sparkles,
|
||||
title: "Projects Completed", value: "750+"},
|
||||
]}
|
||||
title="Our Impact & Dedication"
|
||||
description="Years of experience and countless successful projects stand testament to our commitment to excellence."
|
||||
@@ -336,14 +208,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Green Estates",
|
||||
"Urban Oasis Developers",
|
||||
"Bloom & Grow Supplies",
|
||||
"Community Gardens Inc.",
|
||||
"EcoLandscape Solutions",
|
||||
"Prestige Properties",
|
||||
"ConstructRight Builders",
|
||||
]}
|
||||
"Green Estates", "Urban Oasis Developers", "Bloom & Grow Supplies", "Community Gardens Inc.", "EcoLandscape Solutions", "Prestige Properties", "ConstructRight Builders"]}
|
||||
title="Trusted by Leading Companies & Communities"
|
||||
description="We partner with a diverse range of organizations to create exceptional outdoor environments."
|
||||
/>
|
||||
@@ -355,25 +220,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "What areas do you serve?",
|
||||
content: "We primarily serve the Lombard region and surrounding communities. Please contact us to confirm service availability in your specific location.",
|
||||
},
|
||||
id: "q1", title: "What areas do you serve?", content: "We primarily serve the Lombard region and surrounding communities. Please contact us to confirm service availability in your specific location."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "How do I get a quote for a landscaping project?",
|
||||
content: "You can request a free consultation and quote by filling out our contact form, calling us directly, or sending an email. We'll schedule a visit to assess your needs.",
|
||||
},
|
||||
id: "q2", title: "How do I get a quote for a landscaping project?", content: "You can request a free consultation and quote by filling out our contact form, calling us directly, or sending an email. We'll schedule a visit to assess your needs."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Do you offer garden maintenance packages?",
|
||||
content: "Yes, we offer various seasonal and annual maintenance packages tailored to keep your garden healthy and beautiful. From pruning to seasonal clean-ups, we've got you covered.",
|
||||
},
|
||||
id: "q3", title: "Do you offer garden maintenance packages?", content: "Yes, we offer various seasonal and annual maintenance packages tailored to keep your garden healthy and beautiful. From pruning to seasonal clean-ups, we've got you covered."},
|
||||
{
|
||||
id: "q4",
|
||||
title: "What is your approach to sustainable landscaping?",
|
||||
content: "We prioritize eco-friendly practices, including water-efficient irrigation, native plant selections, and organic soil amendments, to create sustainable and thriving landscapes.",
|
||||
},
|
||||
id: "q4", title: "What is your approach to sustainable landscaping?", content: "We prioritize eco-friendly practices, including water-efficient irrigation, native plant selections, and organic soil amendments, to create sustainable and thriving landscapes."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about our services, process, and pricing."
|
||||
@@ -385,18 +238,11 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "downward-rays-animated",
|
||||
}}
|
||||
variant: "downward-rays-animated"}}
|
||||
text="Ready to Transform Your Landscape?"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Your Free Consultation",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
text: "Call Us Today",
|
||||
href: "tel:+1234567890",
|
||||
},
|
||||
text: "Call Us Now", href: "tel:630-661-6168"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -405,58 +251,35 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Design & Planning",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Design & Planning", href: "#services"},
|
||||
{
|
||||
label: "Installation",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Installation", href: "#services"},
|
||||
{
|
||||
label: "Maintenance",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Maintenance", href: "#services"},
|
||||
{
|
||||
label: "Outdoor Living",
|
||||
href: "#portfolio",
|
||||
},
|
||||
label: "Outdoor Living", href: "#portfolio"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Portfolio",
|
||||
href: "#portfolio",
|
||||
},
|
||||
label: "Portfolio", href: "#portfolio"},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
label: "Testimonials", href: "#testimonials"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "FAQ", href: "#faq"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Get a Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Get a Quote", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
120
src/app/services/page.tsx
Normal file
120
src/app/services/page.tsx
Normal file
@@ -0,0 +1,120 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Portfolio", id: "/#portfolio"},
|
||||
{
|
||||
name: "Testimonials", id: "/#testimonials"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Lombard Landscaping by Morris LDC"
|
||||
button={{
|
||||
text: "Get a Free Quote", href: "/contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-content" data-section="services-content">
|
||||
<FeatureCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Comprehensive Lawn Care Services"
|
||||
description="Lombard Landscaping by Morris LDC offers a full range of professional lawn care and landscaping solutions to keep your property beautiful and healthy all year round."
|
||||
features={[
|
||||
{
|
||||
title: "Expert Lawn Mowing & Edging", description: "Precise lawn mowing, detailed edging, and thorough blowing to give your lawn a pristine, manicured look every time.", imageSrc: "http://img.b2bpic.net/free-photo/gardener-mowing-lawn-with-mower_23-2149176465.jpg", imageAlt: "Lawn mower cutting grass"
|
||||
},
|
||||
{
|
||||
title: "Fertilization & Weed Control", description: "Customized fertilization programs and effective weed control treatments to ensure a lush, green, and weed-free lawn.", imageSrc: "http://img.b2bpic.net/free-photo/gardener-fertilizing-lawn_23-2149176472.jpg", imageAlt: "Person applying fertilizer to a lawn"
|
||||
},
|
||||
{
|
||||
title: "Aeration & Overseeding", description: "Improve soil health and turf density with professional aeration and overseeding services for a thicker, more resilient lawn.", imageSrc: "http://img.b2bpic.net/free-photo/male-hand-holding-soil-with-young-plant_23-2149176483.jpg", imageAlt: "Close-up of aerated lawn with new grass seeds"
|
||||
},
|
||||
{
|
||||
title: "Seasonal Clean-Up", description: "Comprehensive spring and fall clean-up services, including leaf removal, debris clearing, and bed preparation.", imageSrc: "http://img.b2bpic.net/free-photo/gardener-raking-leaves-autumn_23-2149176470.jpg", imageAlt: "Gardener raking leaves"
|
||||
},
|
||||
{
|
||||
title: "Shrub & Hedge Trimming", description: "Expert trimming and shaping of shrubs and hedges to maintain their health, appearance, and desired form.", imageSrc: "http://img.b2bpic.net/free-photo/gardener-trimming-hedges_23-2149176469.jpg", imageAlt: "Gardener trimming a hedge"
|
||||
},
|
||||
{
|
||||
title: "Mulching & Edging Garden Beds", description: "Enhance the beauty of your garden beds with fresh mulch and crisp edging, suppressing weeds and retaining moisture.", imageSrc: "http://img.b2bpic.net/free-photo/gardener-mulching-flower-bed_23-2149176475.jpg", imageAlt: "Garden bed with fresh mulch"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Design & Planning", href: "/services"},
|
||||
{
|
||||
label: "Installation", href: "/services"},
|
||||
{
|
||||
label: "Maintenance", href: "/services"},
|
||||
{
|
||||
label: "Outdoor Living", href: "/#portfolio"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Portfolio", href: "/#portfolio"},
|
||||
{
|
||||
label: "Testimonials", href: "/#testimonials"},
|
||||
{
|
||||
label: "FAQ", href: "/#faq"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Get a Quote", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Lombard Landscaping by Morris LDC. All rights reserved."
|
||||
bottomRightText="Crafted with passion for nature."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user