feat: add eoi queue

This commit is contained in:
Ron 2025-03-31 03:24:02 +02:00
parent 52b9502d4f
commit 0da6143b56
2 changed files with 35 additions and 0 deletions

View File

@ -66,6 +66,11 @@ const { logout } = useDirectusAuth();
const tags = usePortalTags();
const interestMenu = [
{
to: "/dashboard/interest-eoi-queue",
icon: "mdi-tray-full",
title: "EOI Queue",
},
{
to: "/dashboard/interest-analytics",
icon: "mdi-view-dashboard",

View File

@ -0,0 +1,30 @@
<template>
<div class="embed">
<iframe
src="https://database.portnimara.com/dashboard/#/nc/view/f7f017c3-17db-485d-a30c-2b068b0d39a3"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "EOI Queue",
});
</script>
<style scoped>
.embed {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.embed iframe {
width: 100%;
height: calc(100% + 46px);
border: 0;
position: absolute;
top: -46px;
}
</style>