From 8bbc9955b1613390d445af541e971b18528391bd Mon Sep 17 00:00:00 2001 From: sebvtl728 Date: Sat, 4 Jan 2025 14:37:53 +0100 Subject: [PATCH] Maj Header and add logo svg --- .DS_Store | Bin 0 -> 6148 bytes frontend/src/assets/logo-in3-mobil.svg | 22 ++ frontend/src/assets/logo-in3.svg | 22 ++ frontend/src/components/Header.jsx | 75 +++++- frontend/src/components/Pages/Home.jsx | 319 ++++++++++++++++++------- 5 files changed, 341 insertions(+), 97 deletions(-) create mode 100644 .DS_Store create mode 100644 frontend/src/assets/logo-in3-mobil.svg create mode 100644 frontend/src/assets/logo-in3.svg diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..649816c8d6dd015a31f7bd82c3ecf8100678041b GIT binary patch literal 6148 zcmeHK%}T>S5Z-O8-BN@e6nb3nTCjf<#7n641&ruHr6we5FlI}V+CwSitS{t~_&m<+ zZopy>odd`@1;&=5H)8wAZ8T@@RQ$n_XG3t7Sff04~L z4D=UGxOTzrS;`cw{LA|NSoz?4_h)gG<=yTFuT*P0yLC|)O>yf!s)d_-`8*qY={5E) zl#2aQ_x#H!TufX0rz*+4C<#-Y5CtKG++0OTpcZ2_Pl8P6y2c?IqA_i?m&;yn)RBW> zf7Ox8<9@dzhl9~-)er}VMofXmh$x`rTLMv9bSxGI z!2`lgDxgW__KCqwI@qO+b1W7HO*-RxW*EoLTs~g7o*nE`hcoUNq%Sc*46HLyHQg4T z|7Y;aY<%Rer%;a=AO`*!1H3kICu1neo~_@?!?RXGyMu;;aRn+Mps!s5po9BJTRV+k bq7HG6#lj$tf_9w_NEZQ32z`iwUtr)9`fN=T literal 0 HcmV?d00001 diff --git a/frontend/src/assets/logo-in3-mobil.svg b/frontend/src/assets/logo-in3-mobil.svg new file mode 100644 index 0000000..b6e3340 --- /dev/null +++ b/frontend/src/assets/logo-in3-mobil.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + in + tégrale + in + génierie + in + ternationale + Bureau d’études & Maîtrise d’oeuvre + + \ No newline at end of file diff --git a/frontend/src/assets/logo-in3.svg b/frontend/src/assets/logo-in3.svg new file mode 100644 index 0000000..d2f779b --- /dev/null +++ b/frontend/src/assets/logo-in3.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + in + tégrale + in + génierie + in + ternationale + Bureau d’études & Maîtrise d’oeuvre + + \ No newline at end of file diff --git a/frontend/src/components/Header.jsx b/frontend/src/components/Header.jsx index 73d95fc..4361000 100644 --- a/frontend/src/components/Header.jsx +++ b/frontend/src/components/Header.jsx @@ -24,6 +24,8 @@ import ArticleIcon from "@mui/icons-material/Article"; import InfoIcon from "@mui/icons-material/Info"; import ContactMailIcon from "@mui/icons-material/ContactMail"; import WorkIcon from "@mui/icons-material/Work"; +import Logo from "../assets/logo-in3.svg"; +import LogoM from "../assets/logo-in3-mobil.svg"; const Header = () => { const [drawerOpen, setDrawerOpen] = useState(false); @@ -64,7 +66,7 @@ const Header = () => { const commonButtonStyles = { transition: "color 0.3s", position: "relative", - "&:hover": { color: "#00bcd4" }, + "&:hover": { color: " #00bcd4" }, "&:after": { content: '""', position: "absolute", @@ -72,7 +74,7 @@ const Header = () => { height: "2px", bottom: 0, left: 0, - backgroundColor: "#00bcd4", + backgroundColor: " #00bcd4", transition: "width 0.3s", }, "&:hover:after": { @@ -86,7 +88,7 @@ const Header = () => { color="transparent" elevation={0} sx={{ - background: "linear-gradient(to right, #0e467f, #00bcd4)", + background: "linear-gradient(to right, #294A9A, #3158b3)", color: "white", transition: "all 0.3s ease", }} @@ -98,13 +100,16 @@ const Header = () => { color="inherit" aria-label="menu" onClick={toggleDrawer(true)} - sx={{ display: { xs: "block", md: "none" } }} + sx={{ + display: { xs: "block", md: "none" }, + color: " #ffffff" + }} > {/* Logo as Home Link */} - { }} > Mon Site React - + */} + + {/* Logo */} + + Logo + {/* Navigation Links */} @@ -189,7 +216,7 @@ const Header = () => { ...commonButtonStyles, }} > - Articles + Réalisations + */} + + {/* Section Intérêt : Nos Services */} + + + Pourquoi Nous Choisir ? + + + + + + + Expertise + + + Profitez de notre expertise et de nos solutions innovantes adaptées à vos besoins. + + + + + + + + + Confiance + + + Une équipe dédiée et à l'écoute pour garantir votre satisfaction. + + + + + + + + + Résultats + + + Des résultats concrets pour vos projets, avec des retours mesurables. + + + + + + + + {/* Section Désir : Témoignages */} + + + Ce que disent nos clients + + + + + + + "Un service exceptionnel, une équipe formidable !" + + + - Client 1 + + + + + + + + + "Des résultats impressionnants pour notre projet." + + + - Client 2 + + + + + + + + {/* Section Action */} + + + Prêt à Commencer ? + + + + + + + ); }; export default Home; \ No newline at end of file