CustomFooter.tsx 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import React from "react";
  2. import { FaSlack, FaDiscord, FaGithub } from "react-icons/fa";
  3. import "../css/footer.css"; // Importing the CSS file
  4. function CustomFooter() {
  5. return (
  6. <footer className="custom-footer">
  7. <div className="footer-content">
  8. <div className="footer-top">
  9. <div className="footer-title">OpenDevin</div>
  10. <div className="footer-link">
  11. <a href="/modules/usage/intro">Docs</a>
  12. </div>
  13. </div>
  14. <div className="footer-community">Community</div>
  15. <div className="footer-icons">
  16. <a href="https://join.slack.com/t/opendevin/shared_invite/zt-2ggtwn3k5-PvAA2LUmqGHVZ~XzGq~ILw" target="_blank" rel="noopener noreferrer">
  17. <FaSlack />
  18. </a>
  19. <a href="https://discord.gg/ESHStjSjD4" target="_blank" rel="noopener noreferrer">
  20. <FaDiscord />
  21. </a>
  22. <a href="https://github.com/OpenDevin/OpenDevin" target="_blank" rel="noopener noreferrer">
  23. <FaGithub />
  24. </a>
  25. </div>
  26. <div className="footer-bottom">
  27. <p>Copyright &copy; {new Date().getFullYear()} OpenDevin</p>
  28. </div>
  29. </div>
  30. </footer>
  31. );
  32. }
  33. export default CustomFooter;