Compare commits
3 Commits
version_14
...
version_3
| Author | SHA1 | Date | |
|---|---|---|---|
| ef1f6bedcd | |||
| 0597a449fd | |||
| f1df3dcfe5 |
@@ -35,11 +35,12 @@ export default function AboutPage() {
|
|||||||
{
|
{
|
||||||
name: "Testimonials", id: "/#testimonials"},
|
name: "Testimonials", id: "/#testimonials"},
|
||||||
{
|
{
|
||||||
name: "Contact", id: "/contact"}, // Added contact link
|
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 button href
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -52,7 +53,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" // Updated href to contact page
|
text: "Contact Us", href: "/#contact",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -85,12 +86,12 @@ export default function AboutPage() {
|
|||||||
label: "FAQ", href: "/#faq"},
|
label: "FAQ", href: "/#faq"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{ // Added Connect column
|
{
|
||||||
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"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -101,4 +102,4 @@ export default function AboutPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,104 +0,0 @@
|
|||||||
"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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -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';
|
||||||
@@ -43,10 +43,13 @@ export default function LandingPage() {
|
|||||||
name: "Portfolio", id: "/#portfolio"},
|
name: "Portfolio", id: "/#portfolio"},
|
||||||
{
|
{
|
||||||
name: "Testimonials", id: "/#testimonials"},
|
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: "/" }}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -58,7 +61,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: "/"},
|
text: "Get a Free Consultation", href: "/#contact"},
|
||||||
{
|
{
|
||||||
text: "View Our Portfolio", href: "/#portfolio"},
|
text: "View Our Portfolio", href: "/#portfolio"},
|
||||||
]}
|
]}
|
||||||
@@ -231,7 +234,20 @@ 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
|
||||||
@@ -260,6 +276,14 @@ 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."
|
||||||
@@ -268,4 +292,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,10 +34,13 @@ export default function ServicesPage() {
|
|||||||
name: "Portfolio", id: "/#portfolio"},
|
name: "Portfolio", id: "/#portfolio"},
|
||||||
{
|
{
|
||||||
name: "Testimonials", id: "/#testimonials"},
|
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: "/" }}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -98,6 +101,14 @@ export default function ServicesPage() {
|
|||||||
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."
|
||||||
@@ -106,4 +117,4 @@ export default function ServicesPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user