ajout du footer avec les liens et les partenaires
This commit is contained in:
parent
f03d50b474
commit
42739e1a35
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 43 KiB |
@ -1,20 +1,23 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
|
import LogoSqdc from "./partenaires/sqdc.jpg";
|
||||||
|
import LogoGov from "./partenaires/quebec.jpg";
|
||||||
|
import LogoTG from "./partenaires/tg.jpg";
|
||||||
|
|
||||||
|
|
||||||
const Footer = () => {
|
const Footer = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<footer className="footer-container footer">
|
<footer className="footer-container footer">
|
||||||
<div className="row">
|
<div className="footer-links">
|
||||||
<div className="col-4">
|
<div className="footer-link">
|
||||||
<Link to="/aboutUs" className="text-light">À Propos</Link>
|
<Link className="nav-link" to="/aboutUs">À Propos</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-4">
|
<div className="footer-link">
|
||||||
<a className="text-light" >Nous Contacter</a>
|
<Link className="nav-link" to="/contactUs">Nous contacter</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-4">
|
<div className="footer-link">
|
||||||
<a className="text-light" >Vie Privée</a>
|
<Link className="nav-link" to="/privacy">Vie privée</Link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
@ -24,17 +27,14 @@ const Footer = () => {
|
|||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
<div >
|
<div >
|
||||||
<h6 >- Nos partenaires -</h6>
|
<h6 className="footer-partner-title">- Nos partenaires -</h6>
|
||||||
</div>
|
</div>
|
||||||
<div className="row">
|
<div className="footer-partners">
|
||||||
<div className="col-4">
|
<img className="partner-img" src={LogoSqdc} />
|
||||||
|
<img className="partner-img" src={LogoGov} />
|
||||||
|
<img className="partner-img" src={LogoTG} />
|
||||||
</div>
|
</div>
|
||||||
<div className="col-4">
|
<div className="footer-copyrights">
|
||||||
</div>
|
|
||||||
<div className="col-4">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="row text-white">
|
|
||||||
© 2022 - Les Grosses Mitaines à Ginette et Monique, inc.
|
© 2022 - Les Grosses Mitaines à Ginette et Monique, inc.
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 726 KiB After Width: | Height: | Size: 726 KiB |
@ -4,6 +4,11 @@ body {
|
|||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
html{
|
||||||
|
height:100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.home-text{
|
.home-text{
|
||||||
@ -106,9 +111,36 @@ body {
|
|||||||
background-color: plum;
|
background-color: plum;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.footer-container{
|
.footer-container{
|
||||||
|
color: black;
|
||||||
margin-top: 5%;
|
margin-top: 5%;
|
||||||
background-color: black;
|
padding: 2% 3% 2% 3%;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-links{
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-link{
|
||||||
|
color:purple;
|
||||||
|
text-shadow: 5px 5px 10px rgba(0, 0, 0, .75);
|
||||||
|
margin:auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-link:hover{
|
||||||
|
color: plum;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-partners{
|
||||||
|
display:flex;
|
||||||
|
}
|
||||||
|
.partner-img{
|
||||||
|
margin:auto;
|
||||||
|
height:50px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* specification pour les écrans plus petits / cells */
|
/* specification pour les écrans plus petits / cells */
|
||||||
|
Loading…
Reference in New Issue
Block a user