feat: add emails
This commit is contained in:
@@ -96,6 +96,11 @@ const interestMenu = [
|
||||
icon: "mdi-account-check",
|
||||
title: "Interest Status",
|
||||
},
|
||||
{
|
||||
to: "/dashboard/interest-emails",
|
||||
icon: "mdi-email",
|
||||
title: "Emails",
|
||||
},
|
||||
];
|
||||
|
||||
const defaultMenu = [
|
||||
|
||||
29
pages/dashboard/interest-emails.vue
Normal file
29
pages/dashboard/interest-emails.vue
Normal 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>
|
||||
Reference in New Issue
Block a user