From 3f049d5fb98aae41523f7461cf182d447da79691 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 27 May 2026 02:24:40 +0000 Subject: [PATCH 1/2] Add src/app/our-sweets/page.tsx --- src/app/our-sweets/page.tsx | 73 +++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/app/our-sweets/page.tsx diff --git a/src/app/our-sweets/page.tsx b/src/app/our-sweets/page.tsx new file mode 100644 index 0000000..ea2c8a8 --- /dev/null +++ b/src/app/our-sweets/page.tsx @@ -0,0 +1,73 @@ +"use client"; + +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function OurSweetsPage() { + return ( + + + +
+ console.log(value) } + ]} + /> +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From a805a19baa5d45beb518e5a96cbad26ea92dec29 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 27 May 2026 02:24:40 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 29 ++++++----------------------- 1 file changed, 6 insertions(+), 23 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1e06f69..99e72ae 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,7 +4,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import HeroCentered from '@/components/sections/hero/HeroCentered'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; + import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import FaqBase from '@/components/sections/faq/FaqBase'; import ContactSplit from '@/components/sections/contact/ContactSplit'; @@ -31,7 +31,7 @@ export default function Page() { navItems={[ { name: "Home", id: "/" }, { name: "About", id: "#about" }, - { name: "Sweets", id: "#products" }, + { name: "Our Sweets", id: "/our-sweets" }, { name: "Reviews", id: "#testimonials" }, { name: "FAQ", id: "#faq" }, { name: "Contact", id: "#contact" } @@ -51,7 +51,7 @@ export default function Page() { ]} avatarText="Loved by sweet enthusiasts everywhere!" buttons={[ - { text: "Explore Our Sweets", href: "#products" }, + { text: "Explore Our Sweets", href: "/our-sweets" }, { text: "Contact Us", href: "#contact" } ]} buttonAnimation="opacity" @@ -87,24 +87,7 @@ export default function Page() { useInvertedBackground={true} /> -
- -
+
); -} +} \ No newline at end of file -- 2.49.1