feat: add emails
This commit is contained in:
parent
0da6143b56
commit
6b22f61d17
|
|
@ -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 = [
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
Loading…
Reference in New Issue