Created
February 22, 2026 23:11
-
-
Save codigoconjuan/63c6314fcff8ee5ef519cd1f1f06239c to your computer and use it in GitHub Desktop.
Card para Comunidades
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
| export default function CommunityCard() { | |
| return ( | |
| <div className="border border-slate-200 bg-white hover:shadow-lg transition-shadow"> | |
| <div className="overflow-hidden"> | |
| <img | |
| className="object-cover h-60 w-full transition-transform duration-300 ease-in-out hover:scale-120" | |
| /> | |
| </div> | |
| <div className="p-5 space-y-5"> | |
| <a | |
| className="bg-orange-500 hover:bg-orange-600 transition-colors text-xl text-white py-3 px-10 mt-10 font-bold block text-center" | |
| > | |
| Ver Comunidad | |
| </a> | |
| </div> | |
| </div> | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment