home page tweaks

This commit is contained in:
Tim
2024-04-24 23:17:23 -04:00
parent 0ab84adf13
commit 8d85c2e8b1
7 changed files with 68 additions and 18 deletions

19
src/components/Logo.vue Normal file
View File

@@ -0,0 +1,19 @@
<template>
<span class="d-inline-flex align-baseline">
<v-icon icon="mdi-arrow-up-bold" color="primary" class="arrow"/>
<span class="logo">dexorder</span>
<alpha v-if="alpha"/>
</span>
</template>
<script setup>
import Alpha from "@/components/Alpha.vue";
const props = defineProps({
alpha: {type: Boolean, default: true}
})
</script>
<style scoped lang="scss">
</style>