1 Commits

Author SHA1 Message Date
6f7b59093a Update src/app/about/page.tsx 2026-05-30 05:25:40 +00:00
3 changed files with 61 additions and 32 deletions

View File

@@ -24,16 +24,22 @@ 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: "Contact Us", id: "/contact" }
{
name: "Home", id: "/"},
{
name: "About Us", id: "/about"},
{
name: "Services", id: "/services"},
{
name: "Portfolio", id: "/#portfolio"},
{
name: "Testimonials", id: "/#testimonials"},
{
name: "Contact", id: "/contact"}, // Added contact link
]}
brandName="Lombard Landscaping by Morris LDC"
animateOnLoad={true}
button={{ text: "Contact Us", href: "/contact" }}
button={{ text: "Contact Us", href: "/contact" }} // Updated button href
/>
</div>
@@ -46,7 +52,7 @@ export default function AboutPage() {
imageAlt="Lombard Landscaping team working in a garden"
buttons={[
{
text: "Contact Us", href: "/contact"
text: "Contact Us", href: "/contact" // Updated href to contact page
},
]}
/>
@@ -79,6 +85,14 @@ export default function AboutPage() {
label: "FAQ", href: "/#faq"},
],
},
{ // Added Connect column
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."

View File

@@ -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,27 +24,38 @@ 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 Us", id: "/contact" }
{
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: "Contact Us", href: "/contact" }}
button={{
text: "Get a Free Quote", 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 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">

View File

@@ -33,16 +33,20 @@ 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: "Contact Us", id: "/contact" } // Added
{
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: "/contact" }} // Updated href
button={{ text: "Contact Us", href: "/" }}
/>
</div>
@@ -54,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"}, // Changed to /contact
text: "Get a Free Consultation", href: "/"},
{
text: "View Our Portfolio", href: "/#portfolio"},
]}