Skip to content

Commit d11b771

Browse files
fix: update project link structure in ProjectCard component
1 parent 2f93583 commit d11b771

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/components/ProjectCard.astro

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { projectLink, logoLink, name, description, tags = [], loadIssues = false
1414
---
1515

1616
<div class="Card-Container">
17-
<a class="Card-Real-Link" href={projectLink} target="_blank">
17+
1818
<div class="Card-Header">
1919
<img
2020
class="Project-Logo"
@@ -41,10 +41,11 @@ const { projectLink, logoLink, name, description, tags = [], loadIssues = false
4141
<IssueList projectLink={projectLink} projectName={name} />
4242
)}
4343
</div>
44-
<div class="Card-Link">
45-
<span>Go to Project</span>
46-
</div>
47-
</a>
44+
<a class="Card-Real-Link" href={projectLink} target="_blank">
45+
<div class="Card-Link">
46+
<span>Go to Project 1</span>
47+
</div>
48+
</a>
4849
</div>
4950

5051
<style>

0 commit comments

Comments
 (0)