+
+
+
+
+
+
+
+
+
+
+
+
+
+ console.log("Review clicked"),
+ },
+ {
+ id: "2", category: "AirPods Max", title: "Premium Over-Ear Experience That Justifies the Investment", excerpt: "AirPods Max delivers exceptional sound, comfort, and integration that makes them worth every penny for audio enthusiasts.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/airpods-max-over-ear-headphones-displaye-1772884352294-e666eff4.png", imageAlt: "AirPods Max review", authorName: "James Wilson", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/happy-lifestyle-photo-of-person-wearing--1772884353901-6ee88695.png", date: "12 Jan 2025", onBlogClick: () => console.log("Review clicked"),
+ },
+ {
+ id: "3", category: "AirPods 2nd Gen", title: "Affordable Excellence in Wireless Audio", excerpt: "Great value for money. These AirPods offer reliable performance and solid build quality at an accessible price point.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/airpods-2nd-generation-with-charging-cas-1772884351239-d2c575a8.png", imageAlt: "AirPods 2nd generation review", authorName: "Emma Davis", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/professional-businessperson-using-airpod-1772884353609-0ef52970.png", date: "10 Jan 2025", onBlogClick: () => console.log("Review clicked"),
+ },
+ {
+ id: "4", category: "Active Noise Cancellation", title: "Game-Changing Noise Cancellation Technology", excerpt: "The adaptive noise cancellation in AirPods Pro is revolutionary. It seamlessly adapts to your environment and never disappoints.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/abstract-visualization-of-active-noise-c-1772884352205-cdd837a4.png", imageAlt: "Noise cancellation review", authorName: "Michael Chen", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/creative-professional-or-content-creator-1772884352345-f1e1d55c.png", date: "8 Jan 2025", onBlogClick: () => console.log("Review clicked"),
+ },
+ ]}
+ animationType="slide-up"
+ textboxLayout="default"
+ useInvertedBackground={false}
+ carouselMode="buttons"
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
new file mode 100644
index 0000000..9a95e53
--- /dev/null
+++ b/src/app/shop/page.tsx
@@ -0,0 +1,126 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import ProductCardThree from "@/components/sections/product/ProductCardThree";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
+import FooterSimple from "@/components/sections/footer/FooterSimple";
+import { ShoppingBag, Headphones } from "lucide-react";
+
+export default function ShopPage() {
+ return (
+