diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js index 82ab91240e5cb522ebe96c5950e21e09eeb4838e..8822c74addd6978042cb9d3b276840d671bd1b89 100644 --- a/frontend/src/components/Footer.js +++ b/frontend/src/components/Footer.js @@ -1,11 +1,17 @@ +// Footer.js import React from 'react'; +import { Link } from 'react-router-dom'; +import '../css/Footer.css' function Footer() { return ( <footer> - <p>© 2024 ElectroMart. All rights reserved.</p> + <p>© 2024 ElectroMart, Inc.</p> + <Link to="">About Us</Link> + <Link to="">Terms of Service</Link> + <Link to="">Privacy Policy</Link> </footer> ); } -export default Footer; \ No newline at end of file +export default Footer;