add of contact modal

This commit is contained in:
2026-01-13 10:17:11 +01:00
parent fa7592db5a
commit 7f6181a515
2 changed files with 7 additions and 5 deletions
+4 -3
View File
@@ -2,7 +2,7 @@ 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";
import Button from "../ui/button/button.jsx";
export default function Footer(){
const currentYear = new Date().getFullYear();
@@ -23,12 +23,13 @@ export default function Footer(){
<span className={styles.separator}></span>
<Link to="/legalNotices" className={styles.link}>Mentions légales</Link>
<span className={styles.separator}></span>
<Link
<Button
variant={"transparent"}
className={styles.link}
onClick={() => setIsContactModal(true)}
>
Contact
</Link>
</Button>
<span className={styles.separator}></span>
<Link to="/"
className={styles.link}
+3 -2
View File
@@ -20,14 +20,15 @@
}
.link {
color: black;
color: black !important;
text-decoration: none;
font-size: 0.95rem;
transition: color 0.2s ease;
padding: 0 !important;
}
.link:hover {
color: #019AFF;
color: #019AFF !important;
}
.separator {