CrunchyDL/components/Settings/About.vue

21 lines
617 B
Vue
Raw Normal View History

2024-05-08 03:18:15 +02:00
<template>
2024-05-09 02:09:37 +02:00
<div class="relative flex flex-col items-center justify-center h-full" style="-webkit-app-region: no-drag">
2024-05-08 03:18:15 +02:00
<img src="/logo.png" class="h-24" />
<div class="text-base text-center leading-[18px]">
CrunchyDL
2024-05-08 03:18:15 +02:00
</div>
<div class="text-sm mt-1 text-gray-200"> v{{ packageJson.version }} </div>
2024-06-23 19:51:50 +02:00
<div class="absolute right-0 bottom-0 text-xs text-gray-200"> Made by OpenSTDL </div>
2024-05-08 03:18:15 +02:00
</div>
</template>
<script lang="ts" setup>
import packageJson from '../../package.json';
</script>
2024-05-08 03:18:15 +02:00
<style>
.font-dm {
font-family: 'DM Sans', sans-serif;
}
</style>