From 010bd7f953e4823f95998361c511791809b17642 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 11:53:51 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 7e85a15..003ef8f 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -100,4 +100,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From b1d896d865efc8f6dbc93f5b2dcde59aaa4908fe Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 11:53:52 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b12c38c..3e1d7f9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1406,4 +1406,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 7f40a4082f6dd6a4e5dcafbc4dd7e586037bda36 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 11:53:53 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1d8aa2e..ea027cb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,9 +1,9 @@ -"use client" +"use client"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; @@ -29,7 +29,7 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 572c167e9563044946322be5dd97ec4e203325ca Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 11:53:54 +0000 Subject: [PATCH 4/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 3129438..e22c2a7 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -88,8 +88,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Products", id: "products" }, { name: "About", id: "about" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} brandName="LikeYou" button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -165,8 +164,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Products", id: "products" }, { name: "About", id: "about" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} brandName="LikeYou" button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -249,8 +247,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Products", id: "products" }, { name: "About", id: "about" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} brandName="LikeYou" button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -335,4 +332,4 @@ export default function ProductPage({ params }: ProductPageProps) { ); -} \ No newline at end of file +} -- 2.49.1 From 2b0db41aab2165edde9b1e252082a779a0863824 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 11:53:54 +0000 Subject: [PATCH 5/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 26701fe..804907a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -41,8 +41,7 @@ export default function ShopPage() { { name: "Products", id: "products" }, { name: "About", id: "about" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} brandName="LikeYou" button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -117,8 +116,7 @@ export default function ShopPage() { { name: "Products", id: "products" }, { name: "About", id: "about" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} brandName="LikeYou" button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -178,4 +176,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +} -- 2.49.1