Files
DatBrowser/resources/js/Components/Layout/AppLogo.vue

11 lines
310 B
Vue

<script setup>
import { appName } from '@/app.ts'
</script>
<template>
<Link class="flex justify-center items-center gap-3" href="/">
<img src="@/Assets/logo.png" alt="logo DatBrowser" class="h-20" />
<h1 class="text-xl font-display select-none">{{ appName }}</h1>
</Link>
</template>