diff --git a/src/app/solutions/page.tsx b/src/app/solutions/page.tsx index 07703fb..d56ff87 100644 --- a/src/app/solutions/page.tsx +++ b/src/app/solutions/page.tsx @@ -2,99 +2,91 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function SolutionsPage() { + const navItems = [ + { name: "Accueil", id: "/" }, + { name: "Solutions", id: "/solutions" }, + { name: "SIA Experience", id: "/sia-experience" }, + { name: "À Propos", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + return ( -
- +
+ console.log("Product clicked") + }, + { + id: "2", name: "Intégration CIM Digital Twin", price: "Personnalisé", imageSrc: "http://img.b2bpic.net/free-photo/digital-twin-city-hologram_124507-16018.jpg", imageAlt: "Intégration de jumeaux numériques pour ville intelligente", rating: 4.9, + reviewCount: "18", onProductClick: () => console.log("Product clicked") + }, + { + id: "3", name: "Analyse Géotechnique", price: "Flexible", imageSrc: "http://img.b2bpic.net/free-photo/geotechnical-analysis_124507-16019.jpg", imageAlt: "Analyse géotechnique de la structure du sol", rating: 4.7, + reviewCount: "30", onProductClick: () => console.log("Product clicked") + } + ]} + />