rearrange navbar icons

moves FLARE logo to the right left side, and make a link to /
This commit is contained in:
Soufiane Fariss
2024-08-15 16:48:54 +02:00
parent 3a21648e78
commit 25e9e18097

View File

@@ -1,9 +1,15 @@
<script setup>
import Menubar from "primevue/menubar";
import { RouterLink } from "vue-router";
</script>
<template>
<Menubar class="p-1">
<template #start>
<RouterLink to="/">
<img src="@/assets/images/icon.png" alt="Logo" class="w-2rem" />
</RouterLink>
</template>
<template #end>
<div class="flex align-items-center gap-3">
<a
@@ -18,7 +24,6 @@ import Menubar from "primevue/menubar";
<a v-ripple href="https://github.com/mandiant/capa" class="flex justify-content-center w-2rem">
<i class="pi pi-github text-2xl"></i>
</a>
<img src="@/assets/images/icon.png" alt="Logo" class="w-2rem" />
</div>
</template>
</Menubar>