Files
kiosco_desk/renderer/components/Layout/Footer.tsx
T

21 lines
639 B
TypeScript
Raw Normal View History

2026-03-09 15:59:19 -05:00
import footer from "./Footer.module.css"
function Footer() {
2024-02-07 13:13:07 -06:00
const year = new Date();
return (
2026-03-09 15:59:19 -05:00
<footer className={footer.footer}>
<div className={footer.yellowPart}></div>
<p>
2024-02-07 13:13:07 -06:00
Hecho en México, todos los derechos reservados {year.getFullYear()}.
Esta página puede ser reproducida con fines no lucrativos, siempre y
cuando no se mutile, se cite la fuente
completa y su dirección electrónica. De otra forma, requiere permiso
previo por escrito de la institución.
</p>
2026-03-09 15:59:19 -05:00
<div className={footer.yellowPartOpuest}></div>
2024-02-07 13:13:07 -06:00
</footer>
2026-03-09 15:59:19 -05:00
)
2024-02-07 13:13:07 -06:00
}
2026-03-09 15:59:19 -05:00
export default Footer;
//IO