Skip to content

Commit 26575ba

Browse files
AllanSmithllluizchaves
authored andcommitted
feat: exibir contagem de projetos na página de perfil
1 parent f9af980 commit 26575ba

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/pages/people/[person].astro

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ const subjects = projects
6161

6262
{
6363
!!projects.length ? (
64+
<p class="text-xl font-semibold">
65+
{projects.length} projeto(s) disponível(is).
66+
</p>
67+
6468
<div class="grid justify-items-stretch gap-5 grid-cols-1 md:grid-cols-2">
6569
{projects.map((project) => (
6670
<ProjectCard project={project} />

0 commit comments

Comments
 (0)