From 0cdb25fc3681b394aaafb51d0ff38dfdcf832417 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 16:28:15 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4f7067f..3b27928 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroLogo from '@/components/sections/hero/HeroLogo'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import TextAbout from '@/components/sections/about/TextAbout'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; @@ -42,15 +42,28 @@ export default function LandingPage() {
-
-- 2.49.1 From c4cbe5e66dcea6843894031793bca70e0427f7ab Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 16:28:16 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 85bef86..ac9e8ef 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -90,8 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"About","id":"about"}, {"name":"Features","id":"features"}, {"name":"Team","id":"team"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -138,8 +137,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"About","id":"about"}, {"name":"Features","id":"features"}, {"name":"Team","id":"team"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -193,8 +191,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"About","id":"about"}, {"name":"Features","id":"features"}, {"name":"Team","id":"team"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 366bd012ade147e39fde778707694e3e06287c3c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 16:28:17 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 5b0628a..cf74f19 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -40,8 +40,7 @@ export default function ShopPage() { {"name":"About","id":"about"}, {"name":"Features","id":"features"}, {"name":"Team","id":"team"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -87,8 +86,7 @@ export default function ShopPage() { {"name":"About","id":"about"}, {"name":"Features","id":"features"}, {"name":"Team","id":"team"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> -- 2.49.1