More updates

This commit is contained in:
2026-06-25 18:58:55 -07:00
parent 4ad239308c
commit 8fe16ef65c
2 changed files with 23 additions and 5 deletions
+6 -5
View File
@@ -4,11 +4,11 @@
to="/dashboard"
class="d-flex"
>
<img
<!-- <img
class="ml-0 mt-1"
style="height: 36px"
:src="AppLogo"
/>
/> -->
<div v-if="sidebarMini || mdAndDown"></div>
<div
v-else
@@ -20,7 +20,7 @@
color="primary"
style="font-size: 26px"
>
CALEBBURKEDEV
{{ APPLICATION_NAME.toUpperCase() }}
</h1>
</div>
</RouterLink>
@@ -28,12 +28,13 @@
</template>
<script setup>
import AppLogo from "@/assets/app_logo_small.png"
import { useDisplay } from "vuetify"
import useInterface from "@/use/use-interface"
import { watch } from "vue"
// import AppLogo from "@/assets/app_logo_small.png"
import { APPLICATION_NAME } from "@/config"
const { sidebarMini, setSidebarMini } = useInterface()
const { mdAndDown } = useDisplay()
@@ -11,6 +11,23 @@
<v-spacer />
<!-- TODO Add notifications -->
<!-- <v-btn
icon
class="mr-1"
>
<v-badge
color="error"
:content="3"
>
<v-icon
size="24"
color="white"
icon="mdi-bell"
/>
</v-badge>
</v-btn> -->
<ProfileMenu />
</v-app-bar>
</template>