From bf78189f11161f6ebd3c4d494b51e933e52e8134 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 03:50:58 +0000 Subject: [PATCH 1/7] Add src/app/about/page.tsx --- src/app/about/page.tsx | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..3cac7b8 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,41 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Award } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + + + + + ); +} \ No newline at end of file -- 2.49.1 From 1269d28c72dc712dcee4348e00e14811e8388edb Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 03:50:58 +0000 Subject: [PATCH 2/7] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 76 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 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..8aff172 --- /dev/null +++ b/src/app/contact/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 ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ +
+ + Chat on WhatsApp + +
+ + +
+
+ ); +} -- 2.49.1 From fb04c1e96755769e0bdb9e56372a5e62b1e9a398 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 03:50:58 +0000 Subject: [PATCH 3/7] Add src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 46 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 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..0128d52 --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,46 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; + +export default function GalleryPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From aaca50b3b0b15c09ea4526a627f2bf84864cf413 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 03:50:59 +0000 Subject: [PATCH 4/7] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 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..a2e9437 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,46 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function MenuPage() { + return ( + + + + + + + + ); +} \ No newline at end of file -- 2.49.1 From 4b0351f4f69f6c3e922a891508673647a24151d4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 03:50:59 +0000 Subject: [PATCH 5/7] Add src/app/order/page.tsx --- src/app/order/page.tsx | 45 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/app/order/page.tsx diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx new file mode 100644 index 0000000..d643611 --- /dev/null +++ b/src/app/order/page.tsx @@ -0,0 +1,45 @@ +"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'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function OrderPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 3a56d5fb1cd35759741f305b7b302a939bd1aada Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 03:51:00 +0000 Subject: [PATCH 6/7] Update src/app/page.tsx --- src/app/page.tsx | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 04b3a48..e1792b2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,7 +35,7 @@ export default function LandingPage() { { name: "Home", id: "hero" }, { name: "About", id: "about" }, { name: "Menu", id: "products" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} brandName="LMB" /> @@ -146,26 +146,15 @@ export default function LandingPage() { /> -
- -
- -- 2.49.1 From 179050d07055204fd0a176b51501c463ffe0310c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 03:51:00 +0000 Subject: [PATCH 7/7] Update src/app/styles/variables.css --- src/app/styles/variables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index ee8d361..6ecb405 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -13,12 +13,12 @@ --background: #f6f0e9; --card: #efe7dd; --foreground: #2b180a; - --primary-cta: #2b180a; + --primary-cta: #991b1b; --primary-cta-text: #f6f0e9; --secondary-cta: #efe7dd; --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --accent: #b8860b; + --background-accent: #efe7dd; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1