Compare commits
52 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 47de506b47 | |||
| d9e086867e | |||
| 895502fc47 | |||
| 6b8ecb76e4 | |||
| af3b48a37f | |||
| 47d46a5211 | |||
| 5563601943 | |||
| 7a2f97dd70 | |||
| 72c3b560a1 | |||
| 81aca03268 | |||
| 3a375fd8bb | |||
| e201dcf79b | |||
| 7f8a5d08ce | |||
| 6f7b59093a | |||
| 99a3c6e99a | |||
| db570fe276 | |||
| 2df62b6c2a | |||
| 8606c533a1 | |||
| 47dbb146a7 | |||
| 432a4ca467 | |||
| fac4e9f3e2 | |||
| 6961977c49 | |||
| 7e40b6ec27 | |||
| 363a262050 | |||
| 8a6fae8d5c | |||
| 427122d127 | |||
| de433076d1 | |||
| c15f48925b | |||
| 85f7e23051 | |||
| b878652568 | |||
| 787c21b9dc | |||
| bb1ac125c8 | |||
| 89ae15a7a7 | |||
| a9a6d429bc | |||
| 64ffb23daa | |||
| 07a0acfd8e | |||
| 42a96ad0ee | |||
| cab6ead88e | |||
| 920586f4d2 | |||
| ad975e94cb | |||
| 8ced86018b | |||
| c335a3811c | |||
| 6666e9c708 | |||
| 1b5bca474b | |||
| cc051d7601 | |||
| 0236dbd34e | |||
| 9b888a4d02 | |||
| 86a46052e2 | |||
| 49f09b4231 | |||
| 222e151b73 | |||
| 2a6f99f7fb | |||
| 8609cd8e3f |
@@ -24,23 +24,16 @@ export default function AboutPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home", id: "/"},
|
{ name: "About Us", id: "/about" },
|
||||||
{
|
{ name: "Services", id: "/services" },
|
||||||
name: "About Us", id: "/about"},
|
{ name: "Portfolio", id: "/#portfolio" },
|
||||||
{
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
name: "Services", id: "/#services"},
|
{ name: "Contact Us", id: "/contact" }
|
||||||
{
|
|
||||||
name: "Portfolio", id: "/#portfolio"},
|
|
||||||
{
|
|
||||||
name: "Testimonials", id: "/#testimonials"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/#contact"},
|
|
||||||
]}
|
]}
|
||||||
brandName="Lombard Landscaping by Morris LDC"
|
brandName="Lombard Landscaping by Morris LDC"
|
||||||
button={{
|
|
||||||
text: "Get a Free Quote", href: "/#contact"}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
|
button={{ text: "Contact Us", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -53,7 +46,7 @@ export default function AboutPage() {
|
|||||||
imageAlt="Lombard Landscaping team working in a garden"
|
imageAlt="Lombard Landscaping team working in a garden"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Contact Us", href: "/#contact",
|
text: "Contact Us", href: "/contact"
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -65,11 +58,11 @@ export default function AboutPage() {
|
|||||||
{
|
{
|
||||||
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"},
|
||||||
],
|
],
|
||||||
@@ -86,14 +79,6 @@ export default function AboutPage() {
|
|||||||
label: "FAQ", href: "/#faq"},
|
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."
|
bottomLeftText="© 2024 Lombard Landscaping by Morris LDC. All rights reserved."
|
||||||
bottomRightText="Crafted with passion for nature."
|
bottomRightText="Crafted with passion for nature."
|
||||||
@@ -102,4 +87,4 @@ export default function AboutPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
93
src/app/contact/page.tsx
Normal file
93
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
"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 ButtonShiftHover from '@/components/button/ButtonShiftHover/ButtonShiftHover';
|
||||||
|
|
||||||
|
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 Us", id: "/contact" }
|
||||||
|
]}
|
||||||
|
brandName="Lombard Landscaping by Morris LDC"
|
||||||
|
button={{ text: "Contact Us", href: "/contact" }}
|
||||||
|
animateOnLoad={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact-content" data-section="contact-content" className="flex flex-col items-center justify-center min-h-[50vh] text-center px-4 py-16">
|
||||||
|
<h1 className="text-4xl md:text-5xl font-bold mb-8">Contact Us Directly</h1>
|
||||||
|
<p className="text-lg md:text-xl mb-8 max-w-2xl">For immediate assistance, please call us.</p>
|
||||||
|
<ButtonShiftHover
|
||||||
|
text="Call 630-661-6168"
|
||||||
|
href="tel:630-661-6168"
|
||||||
|
className="max-w-xs px-8 py-4 text-xl"
|
||||||
|
/>
|
||||||
|
</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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
@@ -33,23 +33,16 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home", id: "/"},
|
{ name: "About Us", id: "/about" },
|
||||||
{
|
{ name: "Services", id: "/services" },
|
||||||
name: "About Us", id: "/about"},
|
{ name: "Portfolio", id: "/#portfolio" },
|
||||||
{
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
name: "Services", id: "/#services"},
|
{ name: "Contact Us", id: "/contact" } // Added
|
||||||
{
|
|
||||||
name: "Portfolio", id: "/#portfolio"},
|
|
||||||
{
|
|
||||||
name: "Testimonials", id: "/#testimonials"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/#contact"},
|
|
||||||
]}
|
]}
|
||||||
brandName="Lombard Landscaping by Morris LDC"
|
brandName="Lombard Landscaping by Morris LDC"
|
||||||
button={{
|
|
||||||
text: "Get a Free Quote", href: "/#contact"}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
|
button={{ text: "Contact Us", href: "/contact" }} // Updated href
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -61,7 +54,7 @@ export default function LandingPage() {
|
|||||||
description="Creating breathtaking landscapes and outdoor living spaces tailored to your vision and lifestyle. Experience unparalleled beauty and functionality."
|
description="Creating breathtaking landscapes and outdoor living spaces tailored to your vision and lifestyle. Experience unparalleled beauty and functionality."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get a Free Consultation", href: "/#contact"},
|
text: "Get a Free Consultation", href: "/contact"}, // Changed to /contact
|
||||||
{
|
{
|
||||||
text: "View Our Portfolio", href: "/#portfolio"},
|
text: "View Our Portfolio", href: "/#portfolio"},
|
||||||
]}
|
]}
|
||||||
@@ -234,20 +227,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
@@ -255,11 +235,11 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
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"},
|
||||||
],
|
],
|
||||||
@@ -276,14 +256,6 @@ export default function LandingPage() {
|
|||||||
label: "FAQ", href: "/#faq"},
|
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."
|
bottomLeftText="© 2024 Lombard Landscaping by Morris LDC. All rights reserved."
|
||||||
bottomRightText="Crafted with passion for nature."
|
bottomRightText="Crafted with passion for nature."
|
||||||
@@ -292,4 +264,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
109
src/app/services/page.tsx
Normal file
109
src/app/services/page.tsx
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
"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"},
|
||||||
|
]}
|
||||||
|
brandName="Lombard Landscaping by Morris LDC"
|
||||||
|
animateOnLoad={true}
|
||||||
|
button={{ text: "Contact Us", href: "/" }}
|
||||||
|
/>
|
||||||
|
</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"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
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