diff --git a/frontend/src/components/Pages/About.jsx b/frontend/src/components/Pages/About.jsx
index 765b696..95999e0 100644
--- a/frontend/src/components/Pages/About.jsx
+++ b/frontend/src/components/Pages/About.jsx
@@ -15,28 +15,67 @@ import EngineeringIcon from "@mui/icons-material/Engineering";
import AssessmentIcon from "@mui/icons-material/Assessment";
import ComputerIcon from "@mui/icons-material/Computer";
import LibraryBooksIcon from "@mui/icons-material/LibraryBooks";
+import MoneyIcon from "@mui/icons-material/Money";
+import PrintIcon from "@mui/icons-material/Print";
+import StraightenIcon from "@mui/icons-material/Straighten";
+import SettingsInputAntenna from "@mui/icons-material/SettingsInputAntenna";
+import BookIcon from "@mui/icons-material/Book";
const About = () => {
const competences = [
- { icon: , title: "Bureau d’études et Maitrise d’œuvre" },
- { icon: , title: "La structure béton / métallique / bois" },
- { icon: , title: "L’électricité" },
- { icon: , title: "Sécurité incendie (SSI)" },
- { icon: , title: "Expertises TCE" },
- { icon: , title: "Diagnostics technique" },
+ {
+ icon: ,
+ title: "Bureau d’études et Maitrise d’œuvre",
+ link: "/services/maitrise-oeuvre",
+ },
+ {
+ icon: ,
+ title: "La structure béton / métallique / bois",
+ link: "/services/structure-beton-charpente-metallique-bois",
+ },
+ {
+ icon: ,
+ title: "L’électricité",
+ link: "/services/electricite",
+ },
+ {
+ icon: ,
+ title: "Sécurité incendie (SSI)",
+ link: "/services/securite-incendie",
+ },
+ {
+ icon: ,
+ title: "Expertises TCE",
+ link: "/services/expertises-tce",
+ },
+ {
+ icon: ,
+ title: "Diagnostics technique",
+ link: "/services/diagnostics-technique",
+ },
];
const team = [
{
- name: "Ingénieur
consultant Génie Civil",
+ name: "Ingénieur consultant Génie Civil",
role: "Spécialiste Structures en béton armé, charpentes bois et métalliques",
},
- { name: "Ingénieur
Électricité", role: "Expert bâtiment TCE" },
{
- name: "Technicienne
spécialiste Structures",
+ name: "Ingénieur Électricité",
+ role: "courant Forts et Faibles, expert bâtiment TCE",
+ },
+ {
+ name: "Technicienne spécialiste Structures",
role: "Béton armé, TCE, DAO-CAO, dessinatrice TCE",
},
- { name: "Assistante de
gestion", role: "Comptable" },
+ {
+ name: "Assistante de gestion",
+ role: "Comptable",
+ },
+ {
+ name: "consultants",
+ role: "spécialités tel que thermique, SSI",
+ },
];
const infrastructure = [
@@ -55,20 +94,62 @@ const About = () => {
title: "Calculs techniques",
description: "Progiciel interne ou programme du CACT (tango, spot)",
},
+ {
+ icon: ,
+ title: "Logiciel de comptabilité",
+ description: "EBP",
+ },
+ ];
+
+ const materiel = [
+ {
+ icon: ,
+ title: "Parc informatique",
+ },
+ {
+ icon: ,
+ title: "Traceur plans",
+ },
+ {
+ icon: ,
+ title: "Pied à coulisse",
+ },
+ {
+ icon: ,
+ title: "détecteurs de métaux",
+ },
+ {
+ icon: ,
+ title: "Bibliothèques techniques (DTU…)",
+ },
+ {
+ icon: ,
+ title: "Bibliothèques commerciales",
+ },
];
return (
{/* En-tête */}
La société IN3
Depuis 2001, Monsieur Stéphane Seillé gère la société qu’il a créée au
Mans (Sarthe). L’entreprise a su développer son expertise autour des
@@ -77,8 +158,9 @@ const About = () => {
{/* Compétences */}
{
{competences.map((competence, index) => (
-
+
-
-
- {competence.icon}
-
-
- {competence.title}
-
-
-
+ "&:hover svg": { fill: "#ffffff" },
+ }}
+ >
+
+
+ {competence.icon}
+
+
+ {competence.title}
+
+
+
+
))}
- {/* Équipe */}
+ {/* Équipe - Maintenant sur 2 colonnes */}
- Notre Équipe
+
+ Notre Équipe
+
+
+ L’équipe d’IN3 est composée de collaborateurs experts dans leurs
+ domaines :
+
+
+ {team.map((member, index) => (
+
+
+
+
+
+ {member.name}
+
+ {member.role}
+
+
+
+ ))}
+
-
- {team.map((member, index) => (
-
-
-
-
-
- {member.role}
-
-
-
- ))}
-
{/* Infrastructure */}
Notre Infrastructure
@@ -152,10 +277,16 @@ const About = () => {
-
+
{infra.icon}
-
+
{infra.title}
{infra.description}
@@ -164,6 +295,50 @@ const About = () => {
))}
+
+
+
+ Nous sommes équipés de matériel de dernière génération :
+
+
+ {materiel.map((infra, index) => (
+
+
+
+
+ {infra.icon}
+
+
+ {infra.title}
+
+ {infra.description}
+
+
+
+ ))}
+
+
);
};