From 450a1df7a5dd5017a8f322841dcbdcec090cc319 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:59:32 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a5ea175..b9dd481 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,6 +31,7 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "About", id: "about" }, { name: "Testimonials", id: "testimonials" }, + { name: "Get Quote", id: "quote" }, { name: "Contact", id: "contact" } ]} brandName="Magaly Reyes" @@ -58,7 +59,7 @@ export default function LandingPage() { } ]} buttons={[ - { text: "Book a Service", href: "contact" }, + { text: "Book a Service", href: "/quote" }, { text: "Learn More", href: "services" } ]} mediaAnimation="slide-up" -- 2.49.1 From 75d5d80960f8b5f3209ca6428500c9d9dbd9c58d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:59:33 +0000 Subject: [PATCH 2/2] Add src/app/quote/page.tsx --- src/app/quote/page.tsx | 100 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 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..ee2276d --- /dev/null +++ b/src/app/quote/page.tsx @@ -0,0 +1,100 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function QuotePage() { + const handleQuoteSubmit = (data: Record) => { + console.log('Quote request submitted:', data); + // Send email or store in database + }; + + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1