From 6189e5d5dacd78a9540546d52dfa82839fc0f041 Mon Sep 17 00:00:00 2001 From: Tiago Brito <69848652+britotiago03@users.noreply.github.com> Date: Fri, 10 May 2024 05:11:40 +0200 Subject: [PATCH] Implemented Footer.js --- frontend/src/components/Footer.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js index 82ab912..8822c74 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; -- GitLab