Skip to content

Commit

Permalink
feat: Refactor Header and Image components
Browse files Browse the repository at this point in the history
- Updated Header.vue to use generic alt text for the logo
- Modified LinkIcon in Image.vue to include a width prop
  • Loading branch information
nexmoe committed May 6, 2024
1 parent 8330f16 commit 05ffedc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion components/module/Image.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ const cover = props.module.s3Key ? `https://space.r2.102415.xyz/${props.module.s
<div class="space-y-4">
<div class="flex flex-row items-center pt-1 gap-2 px-2.5">
<div class="w-5 h-5 block overflow-hidden">
<LinkIcon :url="props.module.url" />
<LinkIcon
:width="20"
:url="props.module.url"
/>
</div>
<div>
{{ formatDateTime(module.date) }}
Expand Down
2 changes: 1 addition & 1 deletion components/public/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const config = await useGetConfig()
<div class="container header justify-between flex pt-6">
<div class="flex-1 flex items-center">
<NuxtLink :title="config.siteName" :to="'/'" class="flex items-center gap-2">
<NuxtImg :alt="config.siteName" width="40" height="40" class="w-10 rounded-full" :src="config.avatar" />
<NuxtImg alt="Logo" width="40" height="40" class="w-10 rounded-full" :src="config.avatar" />
<div class="uppercase">{{ config.siteName }}</div>
</NuxtLink>
</div>
Expand Down

0 comments on commit 05ffedc

Please sign in to comment.