11 lines
322 B
Vue
11 lines
322 B
Vue
<script setup>
|
|
import { appName } from '@/app.ts'
|
|
</script>
|
|
|
|
<template>
|
|
<router-link class="flex justify-center items-center gap-3" to="/">
|
|
<img src="@/Assets/logo.png" alt="logo DatBrowser" class="h-20" />
|
|
<h1 class="text-xl font-display select-none">{{ appName }}</h1>
|
|
</router-link>
|
|
</template>
|