Skip to content

Commit

Permalink
fix: small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
zAlweNy26 committed Jan 8, 2025
1 parent 209e610 commit 10b403d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
6 changes: 2 additions & 4 deletions app/components/NavFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,8 @@ const error = useError()
</NuLink>
</div>
<div class="grid grid-flow-col gap-4">
<NuLink class="!text-[var(--ui-bg)] hover:scale-110 transition-transform" to="https://github.com/zAlweNy26/LivingDexTracker"
external target="_blank" aria-label="GitHub Repository">
<NuIcon name="i-tabler-brand-github" class="size-8" />
</NuLink>
<NuButton icon="i-tabler-brand-github" class="text-[var(--ui-bg)] p-0" square variant="ghost" size="xl" :ui="{ leadingIcon: 'size-8' }"
to="https://github.com/zAlweNy26/ambo" external target="_blank" aria-label="GitHub Repository" />
</div>
<div class="text-sm flex justify-between items-center gap-4 w-full">
<div class="size-8" />
Expand Down
3 changes: 2 additions & 1 deletion app/pages/(info)/contacts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ const { title } = useAppConfig()
<div class="flex flex-wrap gap-8 w-full items-center justify-evenly">
<NuCard v-for="member in devTeam" :key="member.name" class="text-center" :ui="{ header: 'grid place-content-center' }">
<template v-if="member.avatar" #header>
<NuxtImg :alt="member.name" :src="member.avatar" class="rounded-2xl" sizes="96px md:128px" loading="eager" />
<NuxtImg :alt="member.name" :src="member.avatar" class="rounded-2xl"
width="128" height="128" sizes="96px md:128px" loading="eager" />
</template>
<h3 class="font-bold">
{{ member.name }}
Expand Down
2 changes: 0 additions & 2 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,6 @@ export default defineNuxtConfig({

routeRules: {
'/': { prerender: true },
'/board': { ssr: false },
'/cards': { ssr: false },
'/contacts': { prerender: true },
'/terms': { prerender: true },
},
Expand Down

0 comments on commit 10b403d

Please sign in to comment.