29 lines
375 B
Vue
29 lines
375 B
Vue
<template>
|
|
<div class="embed">
|
|
<iframe
|
|
src="https://vmi2533078.contaboserver.net"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({
|
|
title: "Port Nimara AI",
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
.embed {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.embed iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
</style>
|