add all informations in footer
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
import styles from "./LegalNotices.module.css";
|
||||
import {Link} from "react-router-dom";
|
||||
|
||||
export default function legalNotices() {
|
||||
return (
|
||||
<div className={`${styles.legalNotices} glassCard`}>
|
||||
<h1>Mentions Légales</h1>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2 className={styles.h2}>1. Édition de l'application</h2>
|
||||
<p>
|
||||
L'édition et la direction de la publication de l'application sont assurées par Monsieur Robin Frère
|
||||
<br />Contact : <Link to={"https://comite.beaupont.fr/contactez-nous"}>https://comite.beaupont.fr/contactez-nous</Link>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2 className={styles.h2}>2. Conception et Développement</h2>
|
||||
<p>L'application a été conçue et développée par :</p>
|
||||
<ul>
|
||||
<li>Quentin T'jampens</li>
|
||||
<li>Antoine Ordonneau</li>
|
||||
<li>Malo Leblond</li>
|
||||
<li>Giovanni Josserand</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2 className={styles.h2}>3. Hébergement</h2>
|
||||
<p>
|
||||
L'application est hébergée par la société OVH.
|
||||
<ul>
|
||||
<li>Siège social : 2 rue Kellermann - 59100 Roubaix - France</li>
|
||||
<li>Site web : <Link to={"www.ovh.com"}>www.ovh.com</Link></li>
|
||||
</ul>
|
||||
</p>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
.h2 {
|
||||
justify-content: left;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
.section ul {
|
||||
padding : 0 2em;
|
||||
}
|
||||
|
||||
|
||||
.legalNotices{
|
||||
margin: 16px 2em;
|
||||
}
|
||||
Reference in New Issue
Block a user