Skip to content

Commit

Permalink
Merge pull request Anjaliavv51#57 from manish-bhukar/manish-bhukar
Browse files Browse the repository at this point in the history
Date dynamic version
  • Loading branch information
gauravsingh1281 authored Oct 15, 2023
2 parents 5efc58d + 5896671 commit 1dc64de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Footer-section/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import logo from "../../assets/Images/logo.png";
import { FaTwitter, FaGithub, FaInstagram } from "react-icons/fa";

let date=new Date();
let year=date.getFullYear();
const Footer = () => {
return (
<footer>
Expand Down Expand Up @@ -49,7 +50,7 @@ const Footer = () => {
</div>
<div>
<p className="bg-black text-textWhite text-center py-2">
© <span>{new Date().getFullYear()}</span> || All Rights Reserved ||
© <span>{year}</span> || All Rights Reserved ||
The Virtual World Maker
</p>
</div>
Expand Down

0 comments on commit 1dc64de

Please sign in to comment.