From 83b1999b5d08862d6915d59ffc4d3bdcc7efe378 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 09:16:32 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index b52d784..33e3a32 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -28,12 +28,11 @@ export default function BlogPage() { Date: Mon, 16 Feb 2026 09:16:33 +0000 Subject: [PATCH 2/5] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 107 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 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..d325b8b --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,107 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function ContactPage() { + return ( + + + + +
+ console.log('Contact inquiry from:', email)} + /> +
+ + +
+
+ ); +} -- 2.49.1 From 698c1ce75bab0b01ba0ca1b50c09c133b1d12751 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 09:16:34 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2ea8e3f..5fb5f8b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,7 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Collection", id: "features" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "/contact" } ]} bottomLeftText="Enchanted Drinkware" bottomRightText="hello@beautyandthebeast.com" @@ -203,7 +203,7 @@ export default function LandingPage() { { items: [ { label: "Customer Reviews", href: "testimonials" }, - { label: "Contact Us", href: "contact" }, + { label: "Contact Us", href: "/contact" }, { label: "Shipping Info", href: "#" }, { label: "Returns Policy", href: "#" } ] -- 2.49.1 From 09ab0e672a7ea40e882b520f8e2f75e5817dc71a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 09:16:35 +0000 Subject: [PATCH 4/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index ed774ad..267839c 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -85,12 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) { Date: Mon, 16 Feb 2026 09:16:35 +0000 Subject: [PATCH 5/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index af45c21..c1f80fe 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -37,12 +37,11 @@ export default function ShopPage() {