feat: add files

This commit is contained in:
Ron
2025-02-16 14:10:19 +02:00
commit fbba5a6814
21 changed files with 14376 additions and 0 deletions

31
pages/dashboard/data.vue Normal file
View File

@@ -0,0 +1,31 @@
<template>
<div class="embed">
<iframe
src="https://flows.portnimara.com/public/dashboards/ugQabIMShSld7pXWYLwpsV1kpbSILPiui5eIOfhd?org_slug=default"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Data Analytics",
});
</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>

View File

@@ -0,0 +1,5 @@
<script lang="ts" setup>
definePageMeta({
redirect: "/dashboard/site",
});
</script>

30
pages/dashboard/site.vue Normal file
View File

@@ -0,0 +1,30 @@
<template>
<div class="embed">
<iframe
src="https://analytics.portnimara.com/share/56Dc1w6yYGAOjyoj/portnimara.com"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Site Analytics",
});
</script>
<style scoped>
.embed {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.embed iframe {
width: 100%;
height: calc(100% + 120px);
border: 0;
position: absolute;
top: -120px;
}
</style>