From 2b9b9bf9a5471a3b790fc16d220bafe3a313a76e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 22:14:38 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 73 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..c15a0d5 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,73 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactForm from '@/components/form/ContactForm'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1 From 6c6d9cc7851abea0e9883b7142960d6dbc0844c7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 22:14:38 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f010143..dd0c4e5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -45,8 +45,7 @@ export default function LandingPage() { name: "Contact", id: "contact"}, ]} button={{ - text: "Get a Free Estimate", onClick: scrollToContact, - }} + text: "Get a Free Estimate", href: "/contact"}} brandName="Stonewood" /> @@ -72,8 +71,7 @@ export default function LandingPage() { avatarText="7+ Years in Ottawa · Owner-operated · 4-season service" buttons={[ { - text: "Get a Free Estimate", onClick: scrollToContact, - }, + text: "Get a Free Estimate", href: "/contact"}, { text: "See our work ↓", href: "#services"}, ]} @@ -163,7 +161,7 @@ export default function LandingPage() { text="Ready to work together? Our team responds same day. No obligation." buttons={[ { - text: "Request Free Estimate →", href: "#"}, + text: "Request Free Estimate →", href: "/contact"}, ]} /> @@ -201,4 +199,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1