Improve temp logo

This commit is contained in:
2023-09-04 19:53:01 +02:00
parent 05d2263df5
commit 9871c78ecb

View File

@@ -1,9 +1,14 @@
<script lang="ts" setup> <script lang="ts" setup>
const appConfig = useAppConfig()
const getColor = computed(() => `text-${appConfig.ui.primary}-500`)
</script> </script>
<template> <template>
<div class="flex items-center"> <UButton
LOGO class="flex items-center"
</div> variant="ghost"
to="/"
:class="getColor">
ArthurDanj
</UButton>
</template> </template>