Initial commit

This commit is contained in:
2024-04-02 19:58:23 +02:00
commit b0fd527a88
12 changed files with 8683 additions and 0 deletions

11
global-bottom.vue Normal file
View File

@@ -0,0 +1,11 @@
<script setup>
import { useDarkMode } from '@slidev/client'
const { isDark } = useDarkMode()
</script>
<template>
<footer class="absolute bottom-10 right-10 p-2">
<img v-if="isDark" src="/rptu_white.svg" width="80" />
<img v-else src="/rptu_black.svg" width="80" />
</footer>
</template>