Skip to content

Commit

Permalink
docs: add cute logo
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed May 3, 2024
1 parent be2829d commit 6a7dde5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/index.md
Expand Up @@ -45,3 +45,16 @@ features:
title: Fully Typed APIs
details: Flexible programmatic APIs with full TypeScript typing.
---

<script setup>
import { onMounted } from 'vue'

onMounted(() => {
const urlParams = new URLSearchParams(window.location.search)
if (urlParams.get('uwu') != null) {
const img = document.querySelector('.VPHero .VPImage.image-src')
img.src = '/logo-uwu.png'
img.alt = 'Vite Kawaii Logo by @icarusgkx'
}
})
</script>
Binary file added docs/public/logo-uwu.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6a7dde5

Please sign in to comment.