Files
DatBrowser/resources/js/Components/Layout/AppLogo.vue
2025-01-30 13:26:48 +01:00

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>