From 3be89ac3ff37a9008763439d19652d52a1cf0e5e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:07:39 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d64d546..8cf0e58 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -28,6 +28,7 @@ export default function AboutPage() { { name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Products", id: "/products" }, + { name: "Contact", id: "/contact" }, ]} brandName="Tess's Kitchen" /> @@ -51,7 +52,7 @@ export default function AboutPage() { tag="Ready to order?" title="Order for your next handaan!" description="Send us a message to reserve your favorite treats for your upcoming celebrations." - buttons={[{ text: "Contact Us", href: "#" }]} + buttons={[{ text: "Contact Us", href: "/contact" }]} /> @@ -63,6 +64,7 @@ export default function AboutPage() { { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Products", href: "/products" }, + { label: "Contact", href: "/contact" }, ], }, { From b73c5eca2cfaef4089ed9e8cf3c0723df3d30d79 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:07:39 +0000 Subject: [PATCH 2/4] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 70 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 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..aee44a5 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,70 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} From 0f547da14b8420e1272927c161367a2a3da958bc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:07:40 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 97ca5a1..53e815f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,6 +29,7 @@ export default function LandingPage() { { name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Products", id: "/products" }, + { name: "Contact", id: "/contact" }, ]} brandName="Tess's Kitchen" /> @@ -54,7 +55,7 @@ export default function LandingPage() { { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586294245-nz1ypegd.jpg", imageAlt: "Ube cake 2" }, ]} buttons={[ - { text: "Order Now", href: "#" }, + { text: "Order Now", href: "/contact" }, { text: "View Products", href: "/products" }, ]} avatars={[ @@ -119,6 +120,7 @@ export default function LandingPage() { { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Products", href: "/products" }, + { label: "Contact", href: "/contact" }, ], }, { From e0e93e591644bb8f0a41d15228bc329d1bbcc8af Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:07:40 +0000 Subject: [PATCH 4/4] Update src/app/products/page.tsx --- src/app/products/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 2c91268..4b81b87 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -27,6 +27,7 @@ export default function ProductsPage() { { name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Products", id: "/products" }, + { name: "Contact", id: "/contact" }, ]} brandName="Tess's Kitchen" /> @@ -59,6 +60,7 @@ export default function ProductsPage() { { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Products", href: "/products" }, + { label: "Contact", href: "/contact" }, ], }, {