import styles from "./Footer.module.css" import {Link} from "react-router"; import {useState} from "react"; import Modal from "../ui/modal/modal.jsx"; import TextInput from "../ui/input/input.jsx"; export default function Footer(){ const currentYear = new Date().getFullYear(); const scrollToTop = () => { window.scrollTo({ top: 0, left: 0, behavior: 'smooth' }); }; const [isContactModal, setIsContactModal] = useState(false); return <> {/* TODO : mettre l'adresse email et le numéro de tel dans un fichier de configuration */} setIsContactModal(false)}>

Adresse email

example@gmail.com

Numéro de téléphone

+33 6 09 78 27 19

}