Skip to content

Commit

Permalink
Merge pull request Anjaliavv51#67 from kcsaiganesh/main
Browse files Browse the repository at this point in the history
✔ made Footer navlinks functional
  • Loading branch information
gauravsingh1281 authored Oct 16, 2023
2 parents eb79580 + b250cd0 commit 19daeea
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions src/components/Footer-section/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +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();
let date = new Date();
let year = date.getFullYear();
const Footer = () => {
return (
<footer>
Expand Down Expand Up @@ -41,17 +41,25 @@ const Footer = () => {
</div>
<div className="flex-1">
<ul>
<li className="font-semibold">Home</li>
<li className="font-semibold">About Us</li>
<li className="font-semibold">Contact Us</li>
<li className="font-semibold">Rentals</li>
<li className="font-semibold">
<a href="/">Home</a>
</li>
<li className="font-semibold">
<a href="#AboutUs">About Us</a>
</li>
<li className="font-semibold">
<a href="#ContactUs">Contact Us</a>
</li>
<li className="font-semibold">
<a href="#Service">Rentals</a>
</li>
</ul>
</div>
</div>
<div>
<p className="bg-black text-textWhite text-center py-2">
© <span>{year}</span> || All Rights Reserved ||
The Virtual World Maker
© <span>{year}</span> || All Rights Reserved || The Virtual World
Maker
</p>
</div>
</footer>
Expand Down

0 comments on commit 19daeea

Please sign in to comment.