FEAT: Created link component

This commit is contained in:
Hayden Hargreaves 2025-02-21 11:47:17 -07:00
parent 92e73f6500
commit a17399f508

View File

@ -0,0 +1,11 @@
<script lang="ts">
export let href: string;
export let text: string;
</script>
<a {href} class="group relative inline-block no-underline" target="_blank">
<span class="relative z-10 font-semibold text-gray-300">{text}</span>
<span
class="absolute bottom-0 left-0 h-[3px] w-0 bg-blue-300 transition-all duration-300 group-hover:w-full"
></span>
</a>