Skip to content

Commit

Permalink
Github action9
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhonlz09 committed Apr 12, 2024
1 parent d938c33 commit 90fd7f0
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/components/sections/Projects.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { projects } from "@cv"
<ul>
{
projects.map(
({ url, description, highlights, name, isActive, github }) => {
({ url, description, highlights, name, isActive }) => {
return (
<li>
<article>
Expand All @@ -19,16 +19,6 @@ import { projects } from "@cv"
{name}
</a>
{isActive && <span>•</span>}
{github && (
<a
class="github-code-link"
href={github}
target="_blank"
title={`Ver código fuente del proyecto ${name}`}
>
<GitHub />
</a>
)}
</h3>
<p>{description}</p>
</header>
Expand Down

0 comments on commit 90fd7f0

Please sign in to comment.