frontend: Functions page et FunctionCard

This commit is contained in:
Divlo
2020-03-19 16:13:51 +01:00
parent d4fb1e3aba
commit 0be0abf13c
11 changed files with 1411 additions and 442 deletions

View File

@ -0,0 +1,6 @@
.footer {
border-top: var(--border-header-footer);
display: flex;
justify-content: center;
align-items: center;
}

View File

@ -1,7 +1,9 @@
import './Footer.css';
export default function Footer() {
return (
<footer>
Footer
<footer className="footer">
<p className="footer-text"><a href="https://divlo.fr/" target="_blank" rel="noopener noreferrer">Divlo</a> | Tous droits réservés</p>
</footer>
);
}