init projet
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
// src/pages/MentionsLegales/MentionsLegales.jsx
|
||||
// Page Mentions légales : sans sidebar, contenu statique
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
import { ArrowLeft } from 'lucide-react';
|
||||
import Button from '../../components/common/Button';
|
||||
import styles from './MentionsLegales.module.css';
|
||||
|
||||
export default function MentionsLegales() {
|
||||
const navigate = useNavigate();
|
||||
|
||||
return (
|
||||
<div className={styles.page}>
|
||||
<div className={styles.container}>
|
||||
<div className={styles.header}>
|
||||
<span className={styles.logo}>▶ Data Sentinel</span>
|
||||
<Button variant="link" onClick={() => navigate(-1)}>
|
||||
<ArrowLeft size={14} />
|
||||
Retour
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<div className={styles.content}>
|
||||
<h1 className={styles.mainTitle}>Data Sentinel</h1>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2>Éditeur</h2>
|
||||
<p><strong>XEFI SA</strong></p>
|
||||
<p>2507 Avenue de l'Europe</p>
|
||||
<p>69140 Rillieux-la-Pape</p>
|
||||
<p>dpo@xefi.fr</p>
|
||||
</section>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2>Hébergeur</h2>
|
||||
<p><strong>XEFI Infrastructure NEXERN</strong></p>
|
||||
<p>Souveraineté française</p>
|
||||
</section>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2>Accès & Utilisation</h2>
|
||||
<p>Usage interne exclusif aux collaborateurs habilités.</p>
|
||||
</section>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2>Données personnelles RGPD (UE 2016/679)</h2>
|
||||
<p>Conservation des données : 24 mois</p>
|
||||
<p>Contact DPO : dpo@xefi.fr</p>
|
||||
</section>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2>Cookies</h2>
|
||||
<p>Session JWT uniquement, aucun tiers, bandeau de consentement.</p>
|
||||
</section>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2>Propriété intellectuelle</h2>
|
||||
<p>© XEFI SA 2026, développé par COYAUD Anthony</p>
|
||||
</section>
|
||||
|
||||
<section className={styles.section}>
|
||||
<h2>Responsabilité</h2>
|
||||
<p>Données anonymisées pour rendu académique.</p>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<footer className={styles.footer}>
|
||||
<p>Data Sentinel v1.0 — © XEFI SA 2026</p>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user