2025-02-21 19:54:48 +08:00

8 lines
257 B
TypeScript

const Footer = () => {
return (
<div className="p-6 pt-0 mt-auto text-center dark:text-white-dark ltr:sm:text-left rtl:sm:text-right">© {new Date().getFullYear()}. Rooftop Energy All rights reserved.</div>
);
};
export default Footer;