Skip to content

Commit

Permalink
add cute logo
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Apr 30, 2024
1 parent baf27c8 commit b137c7a
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .vitepress/theme/components/Home.vue
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
<script setup lang="ts">
import { onMounted } from 'vue'
import { ref, onMounted } from 'vue'
import SiteMap from './SiteMap.vue'
// import NewsLetter from './NewsLetter.vue'
import { load, data, base } from './sponsors'
import SponsorsGroup from './SponsorsGroup.vue'
import VueMasteryModal from './VueMasteryModal.vue'
const uwu = ref(false)
onMounted(async () => {
uwu.value = location.search.includes('?uwu')
await load()
})
</script>

<template>
<section id="hero">
<img
v-if="uwu"
src="/logo-uwu.svg"
style="width: 100%; max-width: 580px; margin: -80px auto -20px"
/>
<h1 class="tagline">
The
<span class="accent">Progressive</span>
Expand Down

0 comments on commit b137c7a

Please sign in to comment.