Skip to content

Commit

Permalink
update: add title attributes to project links for improved accessibility
Browse files Browse the repository at this point in the history
Tsuzat committed Dec 27, 2024
1 parent 6d929e9 commit 98cf26d
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/custom/project.svelte
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
let { project }: Props = $props();
</script>

<a href={project.url} target="_blank">
<a href={project.url} target="_blank" title={project.name}>
<Card.Root
class="my-4 py-2 transition-all duration-500 hover:scale-105 hover:cursor-pointer sm:flex"
>
7 changes: 5 additions & 2 deletions src/routes/projects/+page.svelte
Original file line number Diff line number Diff line change
@@ -24,8 +24,11 @@
{/each}
</div>
<p>
Check More Projects on <a href="https://github.com/Tsuzat" target="_blank" class="text-blue-500"
>GitHub</a
Check More Projects on <a
href="https://github.com/Tsuzat"
target="_blank"
class="text-blue-500"
title="Github Link">GitHub</a
>
</p>
</div>

0 comments on commit 98cf26d

Please sign in to comment.