Footer.js 317 B

12345678910111213
  1. import React from "react";
  2. function Footer() {
  3. return (
  4. <footer className="py-2 bg-dark fixed-bottom">
  5. <p className="m-0 text-center text-white">
  6. Bernadette Hammerle | Project in Intelligent Information Systems | September 2021 | Version 5a
  7. </p>
  8. </footer>
  9. );
  10. }
  11. export default Footer;