Changes Logos

This commit is contained in:
2023-12-11 12:23:39 +01:00
parent 5503c572f1
commit 2721a3b2d4
3 changed files with 4 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ const user = useSupabaseUser()
console.log(user)
const router = useRouter()
const route = useRoute()
const colorMode = useColorMode()
const supabase = useSupabaseClient()
const tenants = (await supabase.from("tenants").select()).data
const {loaded, profiles} = storeToRefs(useDataStore())
@@ -181,7 +182,8 @@ const items = [
<UHeader :links="navLinks">
<template #logo>
<div id="logo">
<img src="/spaces.svg"/>
<img v-if="colorMode.value === 'dark'" src="/spaces.svg"/>
<img v-else src="/spaces_hell.svg"/>
</div>
</template>

BIN
spaces/public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB