Skip to content

Commit

Permalink
Merge pull request #828 from mehul-m-prajapati/footer_link_redes
Browse files Browse the repository at this point in the history
Fix footer links
  • Loading branch information
UppuluriKalyani authored Nov 9, 2024
2 parents 04fe4a2 + adec848 commit 68a6e51
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ml-nexus/src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import { FaGithub, FaLinkedin } from 'react-icons/fa';
import { MdEmail } from "react-icons/md";
import { Link } from 'react-router-dom';

const Footer = () => {
return (
Expand All @@ -13,10 +14,10 @@ const Footer = () => {
</div>

<div className="flex space-x-6 text-sm md:text-base mb-4 md:mb-0">
<a href="/About" className="hover:text-[#61B3A0]">About Us</a>
<Link className='text-white hover:text-[#61B3A0]' to="/about">About</Link>
<Link className='text-white hover:text-[#61B3A0]' to="/contact">Contact</Link>
<a href="#projects" className="hover:text-[#61B3A0]">Projects</a>
<a href="#contributors" className="hover:text-[#61B3A0]">Contributors</a>
<a href="/Contact" className="hover:text-[#61B3A0]">Contact</a>
</div>

<div className="flex space-x-4">
Expand Down

0 comments on commit 68a6e51

Please sign in to comment.