All files / components/footer Footer.tsx

100% Statements 2/2
100% Branches 0/0
100% Functions 1/1
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12          1x 2x          
/**
 * Composant Footer de l'application
 * Affiche le copyright et les informations légales en bas de page
 * @returns {JSX.Element} Footer avec les mentions légales
 */
export default function Footer() {
  return (
    <footer className="bg-gray-900 text-white p-4 text-center mt-10">
      © 2025 ClientJO. Tous droits réservés.
    </footer>
  );
}