diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx new file mode 100644 index 0000000..6b92ad8 --- /dev/null +++ b/src/app/shop/page.tsx @@ -0,0 +1,119 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; + +const products = [ + { + id: "1", name: "AI Assistant Pro", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/blue-glowing-artificial-intelligence-brain-background_53876-135832.jpg", imageAlt: "AI Assistant Pro software icon" + }, + { + id: "2", name: "Smart Scheduler Watch", price: "$199.99", imageSrc: "http://img.b2bpic.net/free-photo/smartwatch-with-augmented-reality_1134-124.jpg", imageAlt: "Smartwatch displaying a calendar" + }, + { + id: "3", name: "Productivity Boost E-book", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-desk-with-book-glasses_23-2148455806.jpg", imageAlt: "E-book on a desk" + }, + { + id: "4", name: "Team Collaboration Hub", price: "$99.99", imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-people-working-office_23-2149307049.jpg", imageAlt: "Team collaborating on a large screen" + }, + { + id: "5", name: "AI Planner Extended License", price: "$249.99", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-office-work-station_23-2150190561.jpg", imageAlt: "Futuristic office workspace" + }, + { + id: "6", name: "Data Analytics Module", price: "$149.99", imageSrc: "http://img.b2bpic.net/free-photo/business-graph-with-upward-arrow_1134-43.jpg", imageAlt: "Data analytics dashboard" + } +]; + +export default function ShopPage() { + return ( + + + + +
+ ({ + ...product, + onProductClick: () => window.location.href = `/shop/${product.id}` + }))} + gridVariant="three-columns-all-equal-width" + animationType="slide-up" + /> +
+ + +
+
+ ); +} \ No newline at end of file