creation of Footer component
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import styles from "./Footer.module.css"
|
||||
import {Link} from "react-router";
|
||||
|
||||
function Footer(){
|
||||
|
||||
return (
|
||||
<footer className={`${styles.footer} ${"glassCard"}`} >
|
||||
<div className={styles.footerContent}>
|
||||
<Link to="" className={styles.link}>Contact</Link>
|
||||
<Link to="" className={styles.link}>RGPD</Link>
|
||||
<Link to="" className={styles.link}>Mentions légales</Link>
|
||||
</div>
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
|
||||
export default Footer;
|
||||
Reference in New Issue
Block a user