Skip to content

Commit

Permalink
docs: enhancements for a smoother user experience
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaiyan-dev committed Sep 15, 2023
1 parent 175c752 commit 1fe9267
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/components/Contributors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { contributors } from '../contributors'
<template>
<div flex="~ wrap gap2" justify-center>
<a v-for="{ name, avatar } of contributors" :key="name" :href="`https://github.com/${name}`" m-0 rel="noopener noreferrer" :aria-label="`${name} on GitHub`">
<img loading="lazy" :src="avatar" width="50" height="50" rounded-full h-12 w-12 :alt="`${name}'s avatar`">
<img loading="lazy" decoding="async" :src="avatar" width="50" height="50" rounded-full h-12 w-12 :alt="`${name}'s avatar`">
</a>
</div>
</template>
5 changes: 4 additions & 1 deletion docs/.vitepress/components/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import { teamMembers } from '../contributors'
loading="lazy"
src="/sponsors/antfu.svg"
alt="Anthony Fu's sponsors"
decoding="async"
>
</a>
</div>
Expand All @@ -52,6 +53,7 @@ import { teamMembers } from '../contributors'
loading="lazy"
src="/sponsors/sheremet-va.svg"
alt="Vladimir's sponsors"
decoding="async"
>
</a>
</div>
Expand All @@ -66,13 +68,14 @@ import { teamMembers } from '../contributors'
loading="lazy"
src="/sponsors/patak-dev.svg"
alt="Patak's sponsors"
decoding="async"
>
</a>
</div>
</div>
<p class="text-center opacity-75">
<a href="https://www.netlify.com" rel="noopener noreferrer">
<img src="/netlify.svg" alt="Deploys by Netlify" width="114" height="151">
<img src="/netlify.svg" alt="Deploys by Netlify" width="114" height="151" decoding="async">
</a>
</p>
</div>
Expand Down
1 change: 1 addition & 0 deletions packages/ui/client/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ html,
body {
height: 100%;
font-family: 'Readex Pro', sans-serif;
scroll-behavior: smooth;
}

:root {
Expand Down

0 comments on commit 1fe9267

Please sign in to comment.