diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..3b4d6c7 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,86 @@ +"use client"; + +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ProductsPage() { + const navItems = [ + { name: "Features", id: "#features" }, + { name: "Solutions", id: "#solutions" }, + { name: "Pricing", id: "#pricing" }, + { name: "Documentation", id: "#documentation" }, + { name: "Products", id: "/products" } + ]; + + return ( + + + +
+ console.log('View Marvixa Pro'), + onQuantityChange: (q) => console.log('Quantity changed for Pro:', q) + }, + { + id: "product2", name: "Marvixa Enterprise Suite", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/multi-ethnic-group-young-business-people-meeting-modern-office_23-2147844075.jpg", imageAlt: "Enterprise Team Collaboration", initialQuantity: 1, + onProductClick: () => console.log('View Marvixa Enterprise'), + onQuantityChange: (q) => console.log('Quantity changed for Enterprise:', q) + }, + { + id: "product3", name: "Marvixa AI Integrator", price: "$19/month", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-technological-background-with-circuit-board-elements_23-2148152504.jpg", imageAlt: "AI Integrator Circuit Board", initialQuantity: 1, + onProductClick: () => console.log('View Marvixa AI Integrator'), + onQuantityChange: (q) => console.log('Quantity changed for AI Integrator:', q) + }, + { + id: "product4", name: "Marvixa Data Insights", price: "$39/month", imageSrc: "http://img.b2bpic.net/free-photo/abstract-binary-code-background-digital-data-processing_23-2149591461.jpg", imageAlt: "Data Insights Dashboard", initialQuantity: 1, + onProductClick: () => console.log('View Marvixa Data Insights'), + onQuantityChange: (q) => console.log('Quantity changed for Data Insights:', q) + } + ]} + gridVariant="three-columns-all-equal-width" + animationType="slide-up" + textboxLayout="default" + useInvertedBackground={false} + /> +
+ + +
+ ); +} \ No newline at end of file