From 2d0191710097ab0266f8c3fcc56c11d802cdcedb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Feb 2026 22:07:26 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d34b04e..839fcd3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -46,7 +46,7 @@ export default function LandingPage() { @@ -149,8 +150,6 @@ export default function LandingPage() { rating={5} author="Michael Patterson, Local Business Owner" useInvertedBackground={true} - ratingAnimation="slide-up" - avatarsAnimation="slide-up" avatars={[ { src: "https://img.b2bpic.net/free-vector/flat-variety-male-avatars_23-2147676209.jpg", alt: "Customer 1" }, { src: "https://img.b2bpic.net/free-photo/profile-shot-bearded-young-man-look-left_176420-16068.jpg", alt: "Customer 2" }, From f39cb86f25a7dbb8cdd53365de79fdea5bc52cb3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Feb 2026 22:07:27 +0000 Subject: [PATCH 2/2] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 373 +++++++++++++++++++++++++++++------------- 1 file changed, 263 insertions(+), 110 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 7e83427..e938e08 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,120 +1,273 @@ "use client"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; +import TeamCardFive from '@/components/sections/team/TeamCardFive'; +import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; -import { useProductCatalog } from "@/hooks/useProductCatalog"; +import { Scissors, Award, CheckCircle, Sparkles, Heart, Calendar, Crown } from "lucide-react"; export default function ShopPage() { - const { - products, - isLoading, - search, - setSearch, - filters, - } = useProductCatalog({ basePath: "/shop" }); + return ( + + - if (isLoading) { - return ( - - - -
-

Loading products...

-
- -
-
- ); - } +
+ +
- return ( - - - -
- -
- -
-
- ); + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); } \ No newline at end of file