From 24192d8ce917633dee435dcb6fc35e33c8701fdb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 08:40:49 +0000 Subject: [PATCH 1/5] 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..b1cc698 --- /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 NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; + +export default function ContactPage() { + return ( + + + + +
+ console.log("Form submitted:", data)} + /> +
+
+
+ ); +} -- 2.49.1 From cdc23f25f2a1863f457962cc5ca0cd6fef7f3182 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 08:40:49 +0000 Subject: [PATCH 2/5] Add src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 76 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 src/app/gallery/page.tsx diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..cc55a67 --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,76 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + +export default function GalleryPage() { + return ( + + + + + + + + ); +} -- 2.49.1 From 1de135e9c8e2727498707d97ec4d477a9e721403 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 08:40:49 +0000 Subject: [PATCH 3/5] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 85 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 src/app/menu/page.tsx diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx new file mode 100644 index 0000000..2fa072f --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,85 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + +export default function MenuPage() { + return ( + + + + + + + + ); +} -- 2.49.1 From 339a3dee7b9fd8e75ca2d6bf36d6b8eeb73952ef Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 08:40:50 +0000 Subject: [PATCH 4/5] Update src/app/page.tsx --- src/app/page.tsx | 199 ++++++++++------------------------------------- 1 file changed, 39 insertions(+), 160 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f6efe3a..324ead7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,52 +30,35 @@ export default function LandingPage() {
Date: Thu, 26 Mar 2026 08:40:50 +0000 Subject: [PATCH 5/5] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 2758245..33977e1 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f6f7; + --background: #f5f4f0; --card: #ffffff; - --foreground: #0c1325; - --primary-cta: #0b07ff; + --foreground: #1a1a1a; + --primary-cta: #2c2c2c; --primary-cta-text: #f7f6f7; - --secondary-cta: #ffffff; + --secondary-cta: #f5f4f0; --secondary-cta-text: #0c1325; - --accent: #93b7ff; - --background-accent: #a8bae8; + --accent: #8a8a8a; + --background-accent: #e8e6e1; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1