Skip to content

Commit cb0fe76

Browse files
committed
feat: add link to GitHub repositories in projects section
1 parent 64aff1f commit cb0fe76

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

src/pages/index.astro

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,20 @@ const yearOfExperience = calculateYearsOfExperience("2021-12-01");
197197
</div>
198198
</div>
199199

200-
<h2 class="font-bold text-2xl md:text-3xl my-6" id="projects">
201-
My Personal Projects
202-
</h2>
200+
<div class="flex items-center justify-between my-6">
201+
<h2 class="font-bold text-2xl md:text-3xl" id="projects">
202+
My Personal Projects
203+
</h2>
204+
<a
205+
href="https://github.com/klpod221?tab=repositories"
206+
target="_blank"
207+
class="flex items-center gap-1 text-sm md:text-base text-secondary hover:underline group"
208+
aria-label="View more projects on GitHub"
209+
>
210+
View more on GitHub
211+
<Icon name="mdi:arrow-right" class="w-4 h-4 transition-transform group-hover:translate-x-1" />
212+
</a>
213+
</div>
203214

204215
<ProjectList />
205216

0 commit comments

Comments
 (0)