Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit ea24aa6

Browse files
authored
Add ARIA labels to Home page - Vue (#381)
* add aria labelled article to home page * update welcome image alt text
1 parent a520fc1 commit ea24aa6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

javascript/dwa-starter-vue/src/views/HomeView.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ const { web5 } = storeToRefs(useWeb5Store())
88
</script>
99
<template>
1010
<TodoList v-if="web5" />
11-
<div v-else class="self-center text-center">
11+
<article aria-label="get started" v-else class="self-center text-center">
1212
<h1>DWA Starter Vue!</h1>
13-
<img src="/workplace.svg" class="max-h-72 mx-auto" alt="DWA" />
13+
<img
14+
src="/workplace.svg" class="max-h-72 mx-auto"
15+
alt="DWAs faciliate communication, collaboration, and fun all while allowing users to own their data."
16+
/>
1417
<p>Connect your DWA to get started</p>
1518
<Web5ConnectButton />
16-
</div>
19+
</article>
1720
</template>

0 commit comments

Comments
 (0)