MCP FOR ITSM

by madosh
Verified
import React from 'react'; import { Container } from 'react-bootstrap'; const Footer = () => { return ( <footer className="bg-dark text-light py-3 mt-auto"> <Container className="text-center"> <p className="mb-0">&copy; {new Date().getFullYear()} ITSM Integration Platform. All rights reserved.</p> </Container> </footer> ); }; export default Footer;