Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Created February 22, 2026 23:11
Show Gist options
  • Select an option

  • Save codigoconjuan/63c6314fcff8ee5ef519cd1f1f06239c to your computer and use it in GitHub Desktop.

Select an option

Save codigoconjuan/63c6314fcff8ee5ef519cd1f1f06239c to your computer and use it in GitHub Desktop.
Card para Comunidades
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