Update src/app/solutions/page.tsx

This commit is contained in:
2026-06-09 10:13:57 +00:00
parent ebff882076
commit 8612d6ab4a

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="compact"
sizing="largeSmallSizeLargeTitles"
background="noise"
cardStyle="solid"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="bold"
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="compact"
sizing="largeSmallSizeLargeTitles"
background="noise"
cardStyle="solid"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Accueil", id: "/"},
{
name: "Solutions", id: "/solutions"},
{
name: "SIA Experience", id: "/sia-experience"},
{
name: "À Propos", id: "/about"},
]}
<NavbarStyleFullscreen
navItems={navItems}
logoSrc="http://img.b2bpic.net/free-vector/data-storage-designs-collection_1209-9.jpg"
logoAlt="Logo GeoradarTech GmbH"
brandName="GeoradarTech GmbH"
button={{
text: "Contactez-nous", href: "/contact"}}
/>
button={{ text: "Contactez-nous", href: "/contact" }}
/>
</div>
<div id="solutions-grid" data-section="solutions-grid">
<ProductCardTwo
title="Nos Domaines d'Intervention"
description="Découvrez nos solutions innovantes pour l'analyse et la modélisation 3D de vos infrastructures routières, aéronautiques et ferroviaires. Nous offrons une ingénierie géophysique de pointe pour des diagnostics précis et une planification optimisée."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false}
products={[
{
id: "solution-1", name: "Infrastructures Routières & Maquettes CIM", price: "", rating: 0,
imageSrc: "http://img.b2bpic.net/free-photo/construction-site-road-building_106726-1033.jpg", imageAlt: "Ingénieurs analysant les données de chaussées routières", brand: "", reviewCount: ""
},
{
id: "solution-2", name: "Diagnostic de Chaussées Aéronautiques", price: "", rating: 0,
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-grand-junction-airport_181624-13148.jpg", imageAlt: "Balayage GPR multi-canal d'une piste d'aéroport", brand: "", reviewCount: ""
},
{
id: "solution-3", name: "Diagnostic de Plateformes Ferroviaires", price: "", rating: 0,
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-using-touchscreen-device_1170-1679.jpg", imageAlt: "Écran GPR affichant le profil sous-surface d'une voie ferrée", brand: "", reviewCount: ""
},
]}
/>
<div id="solutions-products" data-section="solutions-products">
<ProductCardOne
title="Découvrez Nos Solutions Innovantes"
description="Nous offrons une gamme complète de services de cartographie 3D et d'intégration de jumeaux numériques."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
products={[
{
id: "1", name: "Cartographie 3D GPR", price: "Sur Devis", imageSrc: "http://img.b2bpic.net/free-photo/georadar-scanning-underground_124507-16017.jpg", imageAlt: "Géoscan 3D pour détection de réseaux", rating: 4.8,
reviewCount: "25", onProductClick: () => 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")
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterLogoEmphasis
logoSrc="http://img.b2bpic.net/free-vector/data-storage-designs-collection_1209-9.jpg"
logoAlt="Logo GeoradarTech GmbH"
columns={[
{
{
items: [
{
label: "Accueil", href: "/"},
{
label: "Solutions", href: "/solutions"},
{
label: "SIA Experience", href: "/sia-experience"},
{
label: "À Propos", href: "/about"},
],
},
{
{ label: "Accueil", href: "/" },
{ label: "Solutions", href: "/solutions" },
{ label: "SIA Experience", href: "/sia-experience" },
{ label: "À Propos", href: "/about" }
]
},
{
items: [
{
label: "Contact", href: "/contact"},
{
label: "Confidentialité", href: "#"},
{
label: "Mentions Légales", href: "#"},
],
},
{ label: "Contact", href: "/contact" },
{ label: "Confidentialité", href: "#" },
{ label: "Mentions Légales", href: "#" }
]
}
]}
logoText="GeoradarTech GmbH"
/>
/>
</div>
</ReactLenis>
</ThemeProvider>