From 4355703ba85c210e61a283e9dbd081fde261081d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:04:26 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 32 ++++++++++++-------------------- 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index cc8d887..d64d546 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -48,15 +47,11 @@ export default function LandingPage() {
@@ -65,18 +60,15 @@ export default function LandingPage() { columns={[ { title: "Tess's Kitchen", items: [ - { - label: "Home", href: "/"}, - { - label: "About", href: "/about"}, + { label: "Home", href: "/" }, + { label: "About", href: "/about" }, + { label: "Products", href: "/products" }, ], }, { title: "Follow Us", items: [ - { - label: "Facebook", href: "#"}, - { - label: "Instagram", href: "#"}, + { label: "Facebook", href: "#" }, + { label: "Instagram", href: "#" }, ], }, ]} @@ -87,4 +79,4 @@ export default function LandingPage() {
); -} \ No newline at end of file +} -- 2.49.1 From c19b4522a97d8140377fab28285c73b4106f586b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:04:26 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 130 ++++++++++++++++------------------------------- 1 file changed, 43 insertions(+), 87 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bd147da..d7d7a44 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -26,10 +26,9 @@ export default function LandingPage() { @@ -157,18 +116,15 @@ export default function LandingPage() { columns={[ { title: "Tess's Kitchen", items: [ - { - label: "Home", href: "/"}, - { - label: "About", href: "/about"}, + { label: "Home", href: "/" }, + { label: "About", href: "/about" }, + { label: "Products", href: "/products" }, ], }, { title: "Follow Us", items: [ - { - label: "Facebook", href: "#"}, - { - label: "Instagram", href: "#"}, + { label: "Facebook", href: "#" }, + { label: "Instagram", href: "#" }, ], }, ]} @@ -179,4 +135,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From dac1bd60522696263bcb6ffadb4b10410e44bfc1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:04:27 +0000 Subject: [PATCH 3/3] Add src/app/products/page.tsx --- src/app/products/page.tsx | 78 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 src/app/products/page.tsx diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..8d1c70a --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,78 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1