Last active
May 6, 2024 19:11
-
-
Save muhammadnasr/2f324db9260beee4ddf251d862ee5133 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import { navigation } from "./LandingPageData"; | |
<div className=" flex items-center gap-x-6"> | |
<div className="sm:mt-10 mt-2 flex justify-center space-x-10"> | |
{navigation.social.map((item) => ( | |
<a | |
key={item.name} | |
href={item.href} | |
className="text-gray-400 hover:text-gray-500" | |
> | |
<span className="sr-only">{item.name}</span> | |
<item.icon className="h-6 w-6" aria-hidden="true" /> | |
</a> | |
))} | |
</div> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment