mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
21 lines
694 B
TypeScript
21 lines
694 B
TypeScript
import * as React from 'react';
|
|
import './footer.css';
|
|
|
|
type FooterProps = object; //empty object
|
|
|
|
const Footer: React.FC<FooterProps> = () => {
|
|
return (
|
|
<div className="footer">
|
|
<div className="footer-content">
|
|
Réalisé avec ❤ à Montréal par des finissant•e•s de l'ETS
|
|
</div>
|
|
<div className="footer-links">
|
|
<a href="https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir/">GitHub</a>
|
|
<span className="divider">|</span>
|
|
<a href="https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir/wiki">Wiki GitHub</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|