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> |
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
//primeiro pipeline | |
name: Build | |
on: | |
push: | |
branches: [$default-branch] | |
workflow_dispatch: | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} |