From 14283c804a9a808b13984187230313bc39f72281 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 18:09:33 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 32 +++----------------------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a00806b..f8b7193 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import HeroPersonalLinks from '@/components/sections/hero/HeroPersonalLinks'; import TextAbout from '@/components/sections/about/TextAbout'; import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; @@ -11,7 +10,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Compass, Zap, Star, Leaf, Heart, Mail, Sparkles, Users, HelpCircle } from "lucide-react"; +import { Zap, Star, Leaf, Heart, Mail, Sparkles, Users, HelpCircle } from "lucide-react"; export default function LandingPage() { return ( @@ -40,37 +39,11 @@ export default function LandingPage() { /> -
- -
-
Date: Fri, 13 Feb 2026 18:09:34 +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 cb9147a..833f795 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: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -165,8 +164,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -247,8 +245,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 1fa9912014ab8eab81a29012e09eabb88828a831 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 18:09:34 +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 33d2e1d..9654ce6 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -43,8 +43,7 @@ export default function ShopPage() { { name: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -117,8 +116,7 @@ export default function ShopPage() { { name: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1