Polarcraft/webv2/pages/map.vue
Xeovalyte bbd329a4cf
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 1s
Build and Deploy / Deploy Discord Bot (push) Failing after 1s
feat: Added Map page
2023-06-25 17:48:22 +02:00

12 lines
259 B
Vue

<template>
<iframe src="https://polarcraft-map.xeovalyte.dev/" height="100%" width="100%" class="mb-5 rounded-xl" />
</template>
<script lang="ts">
definePageMeta({
middleware: ['auth'],
title: 'Map'
})
useHead({ title: 'Map | Polarcraft' })
</script>