chore: use new logo component
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2021-11-13 17:22:24 +01:00
parent 0f630a9c1c
commit 0609b35c9b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<template>
<div class="no-auth-wrapper">
<div class="noauth-container">
<img alt="Vikunja" :src="logoUrl" width="400" height="117"/>
<Logo width="400" height="117" />
<div class="message is-info" v-if="motd !== ''">
<div class="message-header">
<p>{{ $t('misc.info') }}</p>
@ -16,7 +16,7 @@
</template>
<script setup>
import logoUrl from '@/assets/logo-full.svg'
import Logo from '@/components/home/Logo.vue'
import {useStore} from 'vuex'
import {computed} from 'vue'