31 Commits

Author SHA1 Message Date
db570fe276 Update src/app/services/page.tsx 2026-05-30 05:22:44 +00:00
2df62b6c2a Update src/app/page.tsx 2026-05-30 05:22:43 +00:00
8606c533a1 Update src/app/about/page.tsx 2026-05-30 05:22:42 +00:00
432a4ca467 Update src/app/services/page.tsx 2026-05-30 05:21:37 +00:00
fac4e9f3e2 Update src/app/page.tsx 2026-05-30 05:21:36 +00:00
6961977c49 Update src/app/about/page.tsx 2026-05-30 05:21:36 +00:00
7e40b6ec27 Switch to version 9: modified src/app/page.tsx 2026-05-30 05:15:38 +00:00
363a262050 Switch to version 9: modified src/app/contact/page.tsx 2026-05-30 05:15:37 +00:00
8a6fae8d5c Switch to version 10: modified src/app/page.tsx 2026-05-30 05:15:35 +00:00
427122d127 Switch to version 11: modified src/app/page.tsx 2026-05-30 05:15:30 +00:00
de433076d1 Merge version_12 into main
Merge version_12 into main
2026-05-30 05:13:56 +00:00
c15f48925b Update src/app/page.tsx 2026-05-30 05:13:52 +00:00
85f7e23051 Merge version_11 into main
Merge version_11 into main
2026-05-30 05:09:21 +00:00
b878652568 Update src/app/page.tsx 2026-05-30 05:09:18 +00:00
787c21b9dc Merge version_10 into main
Merge version_10 into main
2026-05-30 05:07:11 +00:00
bb1ac125c8 Update src/app/page.tsx 2026-05-30 05:07:08 +00:00
89ae15a7a7 Update src/app/contact/page.tsx 2026-05-30 05:07:07 +00:00
a9a6d429bc Merge version_8 into main
Merge version_8 into main
2026-05-30 04:51:29 +00:00
64ffb23daa Update src/app/page.tsx 2026-05-30 04:51:26 +00:00
07a0acfd8e Merge version_8 into main
Merge version_8 into main
2026-05-30 04:50:50 +00:00
42a96ad0ee Update src/app/page.tsx 2026-05-30 04:50:47 +00:00
cab6ead88e Update src/app/contact/page.tsx 2026-05-30 04:50:46 +00:00
920586f4d2 Merge version_5 into main
Merge version_5 into main
2026-05-30 04:37:07 +00:00
ad975e94cb Update src/app/services/page.tsx 2026-05-30 04:37:04 +00:00
8ced86018b Update src/app/page.tsx 2026-05-30 04:37:04 +00:00
c335a3811c Add src/app/contact/page.tsx 2026-05-30 04:37:04 +00:00
6666e9c708 Update src/app/about/page.tsx 2026-05-30 04:37:03 +00:00
1b5bca474b Update src/app/services/page.tsx 2026-05-30 04:35:06 +00:00
cc051d7601 Update src/app/page.tsx 2026-05-30 04:35:05 +00:00
0236dbd34e Update src/app/about/page.tsx 2026-05-30 04:35:05 +00:00
9b888a4d02 Merge version_4 into main
Merge version_4 into main
2026-05-30 04:32:58 +00:00
4 changed files with 141 additions and 80 deletions

View File

@@ -34,13 +34,10 @@ export default function AboutPage() {
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}
button={{ text: "Contact Us", href: "/" }}
/>
</div>
@@ -53,7 +50,7 @@ export default function AboutPage() {
imageAlt="Lombard Landscaping team working in a garden"
buttons={[
{
text: "Contact Us", href: "/#contact",
text: "Contact Us", href: "/"
},
]}
/>
@@ -65,13 +62,13 @@ export default function AboutPage() {
{
title: "Services", items: [
{
label: "Mowing & Edging", href: "/services"},
label: "Design & Planning", href: "/services"},
{
label: "Fertilization", href: "/services"},
label: "Installation", href: "/services"},
{
label: "Aeration", href: "/services"},
label: "Maintenance", href: "/services"},
{
label: "Seasonal Clean-ups", href: "/services"},
label: "Outdoor Living", href: "/#portfolio"},
],
},
{
@@ -86,14 +83,6 @@ export default function AboutPage() {
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."
@@ -102,4 +91,4 @@ export default function AboutPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

104
src/app/contact/page.tsx Normal file
View 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 for a Free Consultation", 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>
);
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterSimple from '@/components/sections/footer/FooterSimple';
@@ -13,7 +13,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Award, Sparkles, Users, LeafyGreen } from "lucide-react";
import { Award, Sparkles, Users } from "lucide-react";
export default function LandingPage() {
return (
@@ -43,13 +43,10 @@ export default function LandingPage() {
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}
button={{ text: "Contact Us", href: "/" }}
/>
</div>
@@ -61,7 +58,7 @@ export default function LandingPage() {
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: "/"},
{
text: "View Our Portfolio", href: "/#portfolio"},
]}
@@ -234,20 +231,7 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "downward-rays-animated"}}
text="Ready to Transform Your Landscape?"
buttons={[
{
text: "Get Your Free Consultation", href: "/#contact"},
{
text: "Call Us Today", href: "tel:+1234567890"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
@@ -255,13 +239,13 @@ export default function LandingPage() {
{
title: "Services", items: [
{
label: "Mowing & Edging", href: "/services"},
label: "Design & Planning", href: "/services"},
{
label: "Fertilization", href: "/services"},
label: "Installation", href: "/services"},
{
label: "Aeration", href: "/services"},
label: "Maintenance", href: "/services"},
{
label: "Seasonal Clean-ups", href: "/services"},
label: "Outdoor Living", href: "/#portfolio"},
],
},
{
@@ -276,14 +260,6 @@ export default function LandingPage() {
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."
@@ -292,4 +268,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -3,9 +3,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { LeafyGreen, Sprout, Tractor, SprayCan } from "lucide-react";
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
export default function ServicesPage() {
return (
@@ -35,13 +34,10 @@ export default function ServicesPage() {
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}
button={{ text: "Contact Us", href: "/" }}
/>
</div>
@@ -50,24 +46,28 @@ export default function ServicesPage() {
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: "Mowing & Edging", description: "Our professional mowing and precise edging services keep your lawn looking neat and well-maintained. We customize our approach to your lawn's specific needs for optimal health and appearance.", imageSrc: "http://img.b2bpic.net/free-photo/gardener-mowing-lush-lawn_74855-12936.jpg", imageAlt: "Lawn mowing service", buttons: [{ text: "Learn More", href: "/#contact" }]
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: "We develop tailored fertilization plans to nourish your lawn, combined with effective weed control strategies to eliminate unwanted plants and promote strong, healthy grass. Our solutions are designed for the Lombard climate.", imageSrc: "http://img.b2bpic.net/free-photo/farmer-spraying-pesticides-plants_23-2148967923.jpg", imageAlt: "Lawn fertilization and weed control", buttons: [{ text: "Learn More", href: "/#contact" }]
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 your lawn's health by allowing air, water, and nutrients to penetrate the soil more effectively with our aeration services. Overseeding introduces new grass varieties for a thicker, more resilient turf.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-lawn-roller-tool_23-2149405628.jpg", imageAlt: "Lawn aeration and overseeding", buttons: [{ text: "Learn More", href: "/#contact" }]
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-ups", description: "Prepare your property for changing seasons with our comprehensive clean-up services. From leaf removal in the fall to debris clearing in the spring, we ensure your landscape is always ready to thrive.", imageSrc: "http://img.b2bpic.net/free-photo/man-cleaning-leaves-from-lawn_23-2148187498.jpg", imageAlt: "Seasonal leaf clean-up", buttons: [{ text: "Learn More", href: "/#contact" }]
}
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"
},
]}
title="Our Comprehensive Lawn & Landscape Services"
description="At Lombard Landscaping by Morris LDC, we offer a full suite of services designed to keep your outdoor space pristine and vibrant year-round, always with a customer-focused approach."
tag="Expert Care"
tagIcon={LeafyGreen}
/>
</div>
@@ -77,13 +77,13 @@ export default function ServicesPage() {
{
title: "Services", items: [
{
label: "Mowing & Edging", href: "/services"},
label: "Design & Planning", href: "/services"},
{
label: "Fertilization", href: "/services"},
label: "Installation", href: "/services"},
{
label: "Aeration", href: "/services"},
label: "Maintenance", href: "/services"},
{
label: "Seasonal Clean-ups", href: "/services"},
label: "Outdoor Living", href: "/#portfolio"},
],
},
{
@@ -98,14 +98,6 @@ export default function ServicesPage() {
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."
@@ -114,4 +106,4 @@ export default function ServicesPage() {
</ReactLenis>
</ThemeProvider>
);
}
}