Skip to content

Commit

Permalink
fix: sponsors link
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyuujin committed Apr 17, 2023
1 parent 798ddb3 commit a5b878d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/sponsors/SponsorLogo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ const props = defineProps<{
</script>

<template>
<a
<nuxt-link
v-if="sponsor"
:id="sponsor.name_jp"
:href="`/sponsors#${sponsor.name_en}`"
:to="`/sponsors#${sponsor.name_en}`"
class="shadow-card hover:shadow-card-hover transition"
>
<img
:src="props.sponsor.image.src"
:alt="props.sponsor.name_jp"
class="aspect-16/9 object-cover w-full bg-center"
>
</a>
</nuxt-link>
</template>

0 comments on commit a5b878d

Please sign in to comment.