Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,4 +261,4 @@ This project is licensed under <a href="./LICENSE">MIT</a>. <img width=2300/>
<img src="https://img.shields.io/badge/Back%20to%20Top-000000?style=for-the-badge&logo=github&logoColor=white" alt="Back to Top">
</a><br>
<img src="https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Objects/Mirror%20Ball.png" alt="Mirror Ball" width="150" height="150" />
</div>
</div>
14 changes: 13 additions & 1 deletion src/components/Profile/Profile.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { FaGithub, FaLinkedin } from 'react-icons/fa';
import { FaEnvelope, FaGithub, FaInstagram, FaLinkedin } from 'react-icons/fa';
import { FaXTwitter, FaLocationDot } from 'react-icons/fa6';

function Profile({ data }) {
Expand Down Expand Up @@ -131,6 +131,18 @@ function Card({ data }) {
<FaLinkedin className="text-2xl text-blue-600 duration-300 hover:scale-125" />
</a>
)}

{data.social?.Instagram && (
<a href={data.social.Instagram} target="_blank" rel="noreferrer">
<FaInstagram className="text-2xl text-blue-600 duration-300 hover:scale-125" />
</a>
)}

{data.social?.Email && (
<a href={data.social.Email} target="_blank" rel="noreferrer">
<FaEnvelope className="text-2xl text-blue-600 duration-300 hover:scale-125" />
</a>
)}
</div>
</div>
</div>
Expand Down
8 changes: 8 additions & 0 deletions src/components/ProfileSkeleton/ProfileSkeleton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ function ProfileSkeleton() {
GitHub: '',
Twitter: '',
LinkedIn: '',
Instagram: '',
Email: '',
},
};

Expand Down Expand Up @@ -50,6 +52,12 @@ function ProfileSkeleton() {
<div className="skeleton mt-[0.4rem] flex h-[2rem] w-[2rem] rounded-[0.25rem]">
{skeletonData.social.GitHub}
</div>
<div className="skeleton mt-[0.4rem] flex h-[2rem] w-[2rem] rounded-[0.25rem]">
{skeletonData.social.GitHub}
</div>
<div className="skeleton mt-[0.4rem] flex h-[2rem] w-[2rem] rounded-[0.25rem]">
{skeletonData.social.GitHub}
</div>
</div>
</div>
</div>
Expand Down
Loading