Files
calebburke.dev/web/src/components/common/AppLogo.vue
T
burkkyy 02092692b6
Build and Push Docker Image / build (push) Successful in 1m2s
UI upgrades
2026-07-14 04:16:13 -07:00

31 lines
528 B
Vue

<template>
<div class="logo">
<RouterLink
to="/dashboard"
class="d-flex"
>
<div class="d-flex">
<h1
class="mt-1 ml-3"
color="primary"
style="font-size: 26px"
>
{{ APPLICATION_NAME.toUpperCase() }}
</h1>
</div>
</RouterLink>
</div>
</template>
<script setup lang="ts">
import { APPLICATION_NAME } from "@/config"
</script>
<style>
.logo a {
text-decoration: none !important;
color: #fff;
font-weight: 500;
}
</style>