Compare commits
23 Commits
version_3
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| c15f48925b | |||
| 85f7e23051 | |||
| b878652568 | |||
| 787c21b9dc | |||
| bb1ac125c8 | |||
| 89ae15a7a7 | |||
| a9a6d429bc | |||
| 64ffb23daa | |||
| 07a0acfd8e | |||
| 42a96ad0ee | |||
| cab6ead88e | |||
| 920586f4d2 | |||
| ad975e94cb | |||
| 8ced86018b | |||
| c335a3811c | |||
| 6666e9c708 | |||
| 1b5bca474b | |||
| cc051d7601 | |||
| 0236dbd34e | |||
| 9b888a4d02 | |||
| 86a46052e2 | |||
| 49f09b4231 | |||
| 222e151b73 |
@@ -35,11 +35,11 @@ export default function AboutPage() {
|
||||
{
|
||||
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>
|
||||
@@ -53,7 +53,7 @@ export default function AboutPage() {
|
||||
imageAlt="Lombard Landscaping team working in a garden"
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us", href: "/#contact",
|
||||
text: "Contact Us", href: "/contact",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -89,9 +89,9 @@ export default function AboutPage() {
|
||||
{
|
||||
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"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -102,4 +102,4 @@ export default function AboutPage() {
|
||||
</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>
|
||||
);
|
||||
}
|
||||
@@ -40,15 +40,15 @@ export default function LandingPage() {
|
||||
{
|
||||
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>
|
||||
@@ -57,13 +57,13 @@ export default function LandingPage() {
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "downward-rays-static"}}
|
||||
title="Transform Your Outdoors with Lombard Landscaping"
|
||||
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"
|
||||
@@ -242,9 +242,7 @@ export default function LandingPage() {
|
||||
text="Ready to Transform Your Landscape?"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Your Free Consultation", href: "/#contact"},
|
||||
{
|
||||
text: "Call Us Today", href: "tel:+1234567890"},
|
||||
text: "Call Us Now", href: "tel:630-661-6168"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -261,7 +259,7 @@ export default function LandingPage() {
|
||||
{
|
||||
label: "Maintenance", href: "/services"},
|
||||
{
|
||||
label: "Outdoor Living", href: "/#portfolio"},
|
||||
label: "Outdoor Living", href: "#portfolio"},
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -269,19 +267,19 @@ export default function LandingPage() {
|
||||
{
|
||||
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: [
|
||||
{
|
||||
label: "Contact Us", href: "/#contact"},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Get a Quote", href: "/#contact"},
|
||||
label: "Get a Quote", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -292,4 +290,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -35,11 +35,11 @@ export default function ServicesPage() {
|
||||
{
|
||||
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>
|
||||
@@ -104,9 +104,9 @@ export default function ServicesPage() {
|
||||
{
|
||||
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"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -117,4 +117,4 @@ export default function ServicesPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user