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
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