2025-04-01 17:17:35 +05:30

17 lines
657 B
TypeScript

const Footer = () => {
return (
<>
<footer className="content-footer footer bg-footer-theme">
<div className="container-xxl d-flex flex-wrap justify-content-between py-2 flex-md-row flex-column">
<div className="mb-2 mb-md-0" style={{width: "100%", textAlign: "right"}}>
© {new Date().getFullYear()}
, by <a href="https://marcosolutions.co.in/" target="_blank" className="font-weight-light footer-link">MARCO AIoT Technologies Pvt. Ltd.</a>
</div>
</div>
</footer></>
);
};
export default Footer;