Skip to content

Commit

Permalink
docs: add uwu logo
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed May 8, 2024
1 parent 7fef82c commit 3f90090
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions web/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,17 @@ Rolldown is currently in active development and not usable for production yet. W
--vp-home-hero-name-background: -webkit-linear-gradient(90deg, #FF5D13, #F0DB4F);
}
</style>

<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 = '/rolldown-uwu.png'
img.alt = 'Rolldown Kawaii Logo by @icarusgkx'
img.style.maxWidth = '540px'
}
})
</script>
Binary file added web/docs/public/rolldown-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 3f90090

Please sign in to comment.