Created
January 19, 2024 18:31
-
-
Save guilhermedinardi/363ebd82ecc19030d742fa20f6edb070 to your computer and use it in GitHub Desktop.
Grid
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
<div className="grid grid-cols-4"> | |
<h1 className="text-4xl font-extrabold xs:col-span-2 xs:grid xs:gap-4 xs:grid-cols-2 md:col-span-2 md:text-5xl md:grid-cols-3 lg:text-6xl"> | |
<span className="md:col-span-2">habilidades.</span> | |
</h1> | |
{skills.map((skill) => ( | |
<Card | |
key={skill.id} | |
className={`p-4 bg-transparent`} | |
> | |
<CardHeader>{skill.icon}</CardHeader> | |
<CardContent className="text-center text-white-default"> | |
<CardTitle>{skill.name}</CardTitle> | |
</CardContent> | |
</Card> | |
))} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment