We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebbb9ea commit 45251efCopy full SHA for 45251ef
1 file changed
src/landing/src/components/Hero.svelte
@@ -39,14 +39,19 @@
39
40
<!-- Logo -->
41
<div class="mx-auto mb-6 h-24 w-24 sm:h-32 sm:w-32 logo-glow">
42
- <img
43
- bind:this={logoEl}
44
- src="/tinyclaw_logo.png"
45
- alt=""
46
- aria-hidden="true"
47
- class="h-full w-full select-none cursor-pointer transition-transform duration-300 hover:scale-110"
+ <button
+ type="button"
+ class="h-full w-full bg-transparent border-none p-0 cursor-pointer"
+ aria-label="Tiny Claw logo animation"
48
on:click={triggerTwitch}
49
- />
+ >
+ <img
+ bind:this={logoEl}
50
+ src="/tinyclaw_logo.png"
51
+ alt="Tiny Claw logo"
52
+ class="h-full w-full select-none transition-transform duration-300 hover:scale-110"
53
+ />
54
+ </button>
55
</div>
56
57
<!-- Heading -->
0 commit comments