diff --git a/client/src/components/Footer.jsx b/client/src/components/Footer.jsx index f4925df..c533442 100644 --- a/client/src/components/Footer.jsx +++ b/client/src/components/Footer.jsx @@ -4,6 +4,8 @@ import { FiInstagram } from "react-icons/fi"; import { Link } from "react-router-dom"; const Footer = () => { + const today = new Date(); + const year = today.getFullYear(); return (

- Copyright© 2024 by Kaam Do. All rights reserved. + Copyright © {year} by Kaam Do. All rights reserved.

); }; -export default Footer; \ No newline at end of file +export default Footer;