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 ( + + + + +
+ +
+ + +
+
+ ); +} 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