feat: add emails

This commit is contained in:
Ron 2025-03-31 03:30:20 +02:00
parent 0da6143b56
commit 6b22f61d17
2 changed files with 34 additions and 0 deletions

View File

@ -96,6 +96,11 @@ const interestMenu = [
icon: "mdi-account-check", icon: "mdi-account-check",
title: "Interest Status", title: "Interest Status",
}, },
{
to: "/dashboard/interest-emails",
icon: "mdi-email",
title: "Emails",
},
]; ];
const defaultMenu = [ const defaultMenu = [

View File

@ -0,0 +1,29 @@
<template>
<div class="embed">
<iframe
src="https://cloud.portnimara.com/apps/mail/"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Emails",
});
</script>
<style scoped>
.embed {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.embed iframe {
width: 100%;
height: 100%;
border: 0;
position: absolute;
}
</style>