2025-04-02 16:26:40 +02:00
|
|
|
<template>
|
|
|
|
|
<div class="embed">
|
|
|
|
|
<iframe
|
2025-04-06 20:59:47 +02:00
|
|
|
src="https://vmi2533078.contaboserver.net"
|
2025-04-02 16:26:40 +02:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
useHead({
|
|
|
|
|
title: "Port Nimara AI",
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.embed {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100vh;
|
2025-04-02 16:46:34 +02:00
|
|
|
overflow: hidden;
|
2025-04-02 16:26:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.embed iframe {
|
|
|
|
|
width: 100%;
|
2025-04-02 16:46:34 +02:00
|
|
|
height: 100%;
|
|
|
|
|
border: none;
|
2025-04-02 16:26:40 +02:00
|
|
|
}
|
|
|
|
|
</style>
|