From 681a78dc12eb052698abfa46a5d9bb6f36695e27 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 18:54:48 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 542f93d..5e0174c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,7 @@ export default function LandingPage() { @@ -91,7 +93,7 @@ export default function LandingPage() { { text: "Explore Services", href: "#services"}, { - text: "Get a Free Quote", href: "#contact"}, + text: "Get a Free Quote", href: "/quote"}, ]} avatars={[ { @@ -131,7 +133,7 @@ export default function LandingPage() { "Serving Gaithersburg, MD, Green Ground Landscaping LLC is dedicated to providing top-notch landscaping solutions. With a passion for perfection and an eye for detail, we transform ordinary yards into extraordinary outdoor living spaces.", "Our team of experienced landscapers is committed to quality, reliability, and customer satisfaction. From lush gardens to elegant patios, we handle every project with professionalism and expertise."]} buttons={[ { - text: "Get a Free Quote", href: "#contact"}, + text: "Get a Free Quote", href: "/quote"}, ]} /> @@ -326,4 +328,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 93cbce17e79917efbbaee8bcf629f5855f8567fd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 18:54:48 +0000 Subject: [PATCH 2/2] Add src/app/quote/page.tsx --- src/app/quote/page.tsx | 85 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 src/app/quote/page.tsx diff --git a/src/app/quote/page.tsx b/src/app/quote/page.tsx new file mode 100644 index 0000000..e58f570 --- /dev/null +++ b/src/app/quote/page.tsx @@ -0,0 +1,85 @@ +"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 QuotePage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1