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" }, 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