2024-03-29 20:08:34 -04:00
|
|
|
import * as React from 'react';
|
|
|
|
|
import './footer.css';
|
|
|
|
|
|
2025-01-11 02:22:14 -05:00
|
|
|
type FooterProps = object; //empty object
|
2024-03-29 20:08:34 -04:00
|
|
|
|
2025-01-11 02:22:14 -05:00
|
|
|
const Footer: React.FC<FooterProps> = () => {
|
2024-03-29 20:08:34 -04:00
|
|
|
return (
|
|
|
|
|
<div className="footer">
|
|
|
|
|
<div className="footer-content">
|
2025-01-11 02:22:14 -05:00
|
|
|
Réalisé avec ❤ à Montréal par des finissant•e•s de l'ETS
|
2024-03-29 20:08:34 -04:00
|
|
|
</div>
|
|
|
|
|
<div className="footer-links">
|
2025-01-11 02:22:14 -05:00
|
|
|
<a href="https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir/">GitHub</a>
|
2024-03-29 20:08:34 -04:00
|
|
|
<span className="divider">|</span>
|
2024-09-12 08:44:39 -04:00
|
|
|
<a href="https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir/wiki">Wiki GitHub</a>
|
2024-03-29 20:08:34 -04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2024-09-12 08:44:39 -04:00
|
|
|
export default Footer;
|