-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,19 +74,19 @@ export function Component() { | |
{/* Icons div */} | ||
<div className="flex items-center space-x-4"> | ||
<a href="https://www.instagram.com/davidnintcheu/" rel="noopener noreferrer" target="_blank"> | ||
<InstagramIcon className="w-6 h-6 text-white" /> | ||
<InstagramIcon className="w-6 h-6 text-white hover:scale-105 transition-transform duration-200" /> | ||
</a> | ||
<a href="https://github.com/Flopsky" rel="noopener noreferrer" target="_blank"> | ||
<GithubIcon className="w-6 h-6 text-white" /> | ||
<GithubIcon className="w-6 h-6 text-white hover:scale-105 transition-transform duration-200" /> | ||
</a> | ||
<a href="https://www.linkedin.com/in/dkamgang/" rel="noopener noreferrer" target="_blank"> | ||
<LinkedinIcon className="w-6 h-6 text-white" /> | ||
<LinkedinIcon className="w-6 h-6 text-white hover:scale-105 transition-transform duration-200" /> | ||
</a> | ||
<a href="mailto:David%20Doe%20<[email protected]>" rel="noopener noreferrer" target="_blank"> | ||
<MailIcon className="w-6 h-6 text-white" /> | ||
<MailIcon className="w-6 h-6 text-white hover:scale-105 transition-transform duration-200" /> | ||
</a> | ||
<a href="#" rel="noopener noreferrer" target="_blank"> | ||
<YoutubeIcon className="w-6 h-6 text-white" /> | ||
<YoutubeIcon className="w-6 h-6 text-white hover:scale-105 transition-transform duration-200" /> | ||
</a> | ||
</div> | ||
</div> | ||
|