add of contact modal
This commit is contained in:
@@ -2,7 +2,7 @@ import styles from "./Footer.module.css"
|
|||||||
import {Link} from "react-router";
|
import {Link} from "react-router";
|
||||||
import {useState} from "react";
|
import {useState} from "react";
|
||||||
import Modal from "../ui/modal/modal.jsx";
|
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(){
|
export default function Footer(){
|
||||||
const currentYear = new Date().getFullYear();
|
const currentYear = new Date().getFullYear();
|
||||||
@@ -23,12 +23,13 @@ export default function Footer(){
|
|||||||
<span className={styles.separator}></span>
|
<span className={styles.separator}></span>
|
||||||
<Link to="/legalNotices" className={styles.link}>Mentions légales</Link>
|
<Link to="/legalNotices" className={styles.link}>Mentions légales</Link>
|
||||||
<span className={styles.separator}></span>
|
<span className={styles.separator}></span>
|
||||||
<Link
|
<Button
|
||||||
|
variant={"transparent"}
|
||||||
className={styles.link}
|
className={styles.link}
|
||||||
onClick={() => setIsContactModal(true)}
|
onClick={() => setIsContactModal(true)}
|
||||||
>
|
>
|
||||||
Contact
|
Contact
|
||||||
</Link>
|
</Button>
|
||||||
<span className={styles.separator}></span>
|
<span className={styles.separator}></span>
|
||||||
<Link to="/"
|
<Link to="/"
|
||||||
className={styles.link}
|
className={styles.link}
|
||||||
|
|||||||
@@ -20,14 +20,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.link {
|
.link {
|
||||||
color: black;
|
color: black !important;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
transition: color 0.2s ease;
|
transition: color 0.2s ease;
|
||||||
|
padding: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.link:hover {
|
.link:hover {
|
||||||
color: #019AFF;
|
color: #019AFF !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.separator {
|
.separator {
|
||||||
|
|||||||
Reference in New Issue
Block a user