Compare commits
14 Commits
version_15
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 47de506b47 | |||
| d9e086867e | |||
| 895502fc47 | |||
| 6b8ecb76e4 | |||
| af3b48a37f | |||
| 47d46a5211 | |||
| 5563601943 | |||
| 7a2f97dd70 | |||
| 72c3b560a1 | |||
| 81aca03268 | |||
| 3a375fd8bb | |||
| e201dcf79b | |||
| 7f8a5d08ce | |||
| 6f7b59093a |
@@ -24,20 +24,16 @@ export default function AboutPage() {
|
||||
<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: "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"
|
||||
animateOnLoad={true}
|
||||
button={{ text: "Contact Us", href: "/" }}
|
||||
button={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -50,7 +46,7 @@ export default function AboutPage() {
|
||||
imageAlt="Lombard Landscaping team working in a garden"
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us", href: "/"
|
||||
text: "Contact Us", href: "/contact"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
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';
|
||||
import ButtonShiftHover from '@/components/button/ButtonShiftHover/ButtonShiftHover';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
@@ -24,38 +24,27 @@ export default function ContactPage() {
|
||||
<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"}
|
||||
{ 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: "Get a Free Quote", href: "/contact"}}
|
||||
button={{ text: "Contact Us", 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 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">
|
||||
|
||||
@@ -33,20 +33,16 @@ export default function LandingPage() {
|
||||
<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: "Home", id: "/" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Portfolio", id: "/#portfolio" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Contact Us", id: "/contact" } // Added
|
||||
]}
|
||||
brandName="Lombard Landscaping by Morris LDC"
|
||||
animateOnLoad={true}
|
||||
button={{ text: "Contact Us", href: "/" }}
|
||||
button={{ text: "Contact Us", href: "/contact" }} // Updated href
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,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."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Consultation", href: "/"},
|
||||
text: "Get a Free Consultation", href: "/contact"}, // Changed to /contact
|
||||
{
|
||||
text: "View Our Portfolio", href: "/#portfolio"},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user