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

footer is updated with social links #79

Merged
merged 4 commits into from
Oct 22, 2024
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
36 changes: 36 additions & 0 deletions src/containers/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,44 @@ const Footer = () => {
>
Design & Built by Vatsal Singh
</a>
<div className="social-media flex justify-center space-x-4 mt-2">
<a
href="https://twitter.com/vatsalsinghkv"
target="_blank"
rel="noreferrer"
className="text-dark-2 hover:text-accent transition-colors"
>
<i className="fab fa-twitter text-2xl"></i>
</a>
<a
href="https://github.com/vatsalsinghkv"
target="_blank"
rel="noreferrer"
className="text-dark-2 hover:text-accent transition-colors"
>
<i className="fab fa-github text-2xl"></i>
</a>
<a
href="https://www.linkedin.com/in/vatsalsinghkv"
target="_blank"
rel="noreferrer"
className="text-dark-2 hover:text-accent transition-colors"
>
<i className="fab fa-linkedin text-2xl"></i>
</a>
<a
href="https://www.facebook.com/vatsalsinghkv"
target="_blank"
rel="noreferrer"
className="text-dark-2 hover:text-accent transition-colors"
>
<i className="fab fa-facebook text-2xl"></i>
</a>
</div>
</footer>
);
};

export default Footer;


Loading