From d0cb49976183066beb746816659519d4fa2c0b58 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 07:51:25 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 84 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 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..f57ddd8 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,84 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactForm from '@/components/form/ContactForm'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function ContactPage() { + return ( + + + + +
+ console.log('Form submitted:', data)} + centered={true} + /> +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 6830e18480708b3a26da3d5fb03c6588a0e65214 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 07:51:26 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b25943a..0827b53 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -43,10 +43,10 @@ export default function LandingPage() { { name: "FAQ", id: "#faq"}, { - name: "Contact", id: "#contact"}, + name: "Contact", href: "/contact"}, ]} button={{ - text: "Order Now", href: "#contact"}} + text: "Order Now", href: "/contact"}} brandName="Yummy Treat Cafe" /> @@ -59,7 +59,7 @@ export default function LandingPage() { { text: "View Our Menu", href: "#menu"}, { - text: "Make a Reservation", href: "#contact"}, + text: "Make a Reservation", href: "/contact"}, ]} buttonAnimation="opacity" imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-taking-photos-with-smartphone_23-2149356887.jpg" @@ -218,7 +218,7 @@ export default function LandingPage() { { label: "Delivery", href: "#features"}, { - label: "Reservations", href: "#contact"}, + label: "Reservations", href: "/contact"}, ], }, { @@ -226,7 +226,7 @@ export default function LandingPage() { { label: "FAQ", href: "#faq"}, { - label: "Contact Us", href: "#contact"}, + label: "Contact Us", href: "/contact"}, { label: "Privacy Policy", href: "#"}, ], @@ -239,4 +239,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1