Add Social Media section to dashboard

Add navigation menu item and create new page with embedded marketing content from marketing.starbit.cloud.
This commit is contained in:
Matt 2025-06-05 18:17:29 +02:00
parent 60d69ceb11
commit 408e5612b8
2 changed files with 36 additions and 1 deletions

View File

@ -107,7 +107,11 @@ const interestMenu = [
icon: "mdi-folder",
title: "File Browser",
},
{
to: "/dashboard/social-media",
icon: "mdi-share-variant",
title: "Social Media",
},
];

View File

@ -0,0 +1,31 @@
<template>
<div class="embed">
<iframe
src="https://marketing.starbit.cloud"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Social Media",
});
</script>
<style scoped>
.embed {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.embed iframe {
position: absolute;
width: 100%;
height: calc(100% + 180px);
border: 0;
top: 0;
left: 0;
}
</style>