docs: add roadmap page with volta board

This commit is contained in:
Benjamin Canac
2023-05-17 12:16:52 +02:00
parent b795f0f65b
commit 1bfcf31964
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<template>
<iframe :src="src" class="w-full min-h-[calc(100vh/1.5)] border border-gray-200 dark:border-gray-800 rounded-md" />
</template>
<script setup lang="ts">
const props = defineProps({
token: {
type: String,
required: true
}
})
const src = computed(() => `https://volta.net/embed/${props.token}`)
</script>