Last active
March 2, 2026 18:58
-
-
Save codigoconjuan/bf24abb2b46d6be42ba3183c05386b00 to your computer and use it in GitHub Desktop.
Próximos Meetis Por Comunidad
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
| <section className="max-w-7xl mx-auto mt-10"> | |
| <div className="mt-10 grid grid-cols-1 lg:grid-cols-3 gap-5 p-5 lg:p-0"> | |
| <p className="text-center py-10 text-lg text-gray-600 col-span-1 lg:col-span-3">No Hay Próximos Meetis en esta comunidad</p> | |
| </div> | |
| </section> |
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 MeetiCard() { | |
| return ( | |
| <div className="border border-slate-200 hover:shadow-lg transition-shadow"> | |
| <div className="overflow-hidden"> | |
| <img | |
| className="object-cover h-72 w-full transition-transform duration-300 ease-in-out hover:scale-120" | |
| /> | |
| </div> | |
| <div className="p-5 space-y-5"> | |
| <p className="text-sm text-gray-600"> | |
| </p> | |
| <Heading className="text-2xl font-bold h-16"> | |
| </Heading> | |
| <div className="flex items-center gap-5"> | |
| <p> | |
| </p> | |
| </div> | |
| <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 Meeti | |
| </a> | |
| </div> | |
| </div> | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment