Skip to content

Commit

Permalink
Update Footer.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Meetjain1 committed Jul 20, 2024
1 parent 25e7eb1 commit 40213d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { Link } from 'react-router-dom';
import logo from '../assets/tab-icon.png'; // Import your logo image

const Footer = () => {
const today = new Date();
const year = today.getFullYear();
return (
<footer className="bg-gray-900 text-white py-10">
<div className="container mx-auto flex flex-col md:flex-row justify-start items-start px-4 md:px-15 lg:px-100 space-y-8 md:space-y-0">
Expand Down Expand Up @@ -68,7 +70,7 @@ const Footer = () => {

<div className="border-t border-gray-800 mt-8 pt-6 flex flex-col md:flex-row justify-between items-center px-6 md:px-12 lg:px-20">
<div className="text-gray-400 text-center md:text-left mb-4 md:mb-0">
<p>&copy; 2024 Diabetes Prediction. All rights reserved.</p>
<p> &copy; {year} Diabetes Prediction. All rights reserved. </p>
</div>
<div>
<a
Expand Down

0 comments on commit 40213d5

Please sign in to comment.