diff --git a/frontend/src/components/Pages/About.jsx b/frontend/src/components/Pages/About.jsx index 855ff2f..765b696 100644 --- a/frontend/src/components/Pages/About.jsx +++ b/frontend/src/components/Pages/About.jsx @@ -1,12 +1,171 @@ -import React from 'react'; +import React from "react"; +import { + Box, + Typography, + Grid, + Card, + CardContent, + Avatar, +} from "@mui/material"; +import BusinessIcon from "@mui/icons-material/Business"; +import BuildIcon from "@mui/icons-material/Build"; +import FlashOnIcon from "@mui/icons-material/FlashOn"; +import SecurityIcon from "@mui/icons-material/Security"; +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"; const About = () => { - return ( -
-

À propos

-

Bienvenue sur la page À propos.

-
- ); + 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" }, + ]; + + const team = [ + { + 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", + role: "Béton armé, TCE, DAO-CAO, dessinatrice TCE", + }, + { name: "Assistante de
gestion", role: "Comptable" }, + ]; + + const infrastructure = [ + { + icon: , + title: "CAO-DAO", + description: "Autocad & ZWCAD Pro", + }, + { + icon: , + title: "Modélisation", + description: "Sketchup 3D", + }, + { + icon: , + title: "Calculs techniques", + description: "Progiciel interne ou programme du CACT (tango, spot)", + }, + ]; + + 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 + activités du bureau d’études et de la maîtrise d’œuvre. + + + {/* Compétences */} + + Nos Compétences + + + {competences.map((competence, index) => ( + + + + + {competence.icon} + + + {competence.title} + + + + + ))} + + + {/* Équipe */} + + Notre Équipe + + + {team.map((member, index) => ( + + + + + + {member.role} + + + + ))} + + + {/* Infrastructure */} + + Notre Infrastructure + + + {infrastructure.map((infra, index) => ( + + + + + {infra.icon} + + + {infra.title} + + {infra.description} + + + + ))} + + + ); }; -export default About; \ No newline at end of file +export default About;