From b65e5c621062ac8314aa1bf33c8c139c7487cfd7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 15:57:40 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a98346c..f176154 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,8 +3,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import TestimonialAboutCard from '@/components/sections/testimonial/TestimonialAboutCard'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import TeamCardSix from '@/components/sections/team/TeamCardSix'; @@ -76,7 +76,7 @@ export default function LandingPage() {
-
- Date: Wed, 18 Feb 2026 15:57:40 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 3daf300..fa5b210 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -86,7 +86,10 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -126,7 +129,10 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -173,7 +179,10 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 50c0b30e4761a0b6f7f235405ab8d269fb8b4a53 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 15:57:41 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index f8c98b4..f539ff6 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -36,7 +36,10 @@ export default function ShopPage() { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -75,7 +78,10 @@ export default function ShopPage() { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> -- 2.49.1