Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix footer links #828

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading