diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-13 00:17:32 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-13 00:17:32 +0000 |
| commit | 543aa0cd4a461285298d33a90ab3f11a9f084ca5 (patch) | |
| tree | ffbaec5f495b2cf8b891690642df161464ac6e95 /pages/editor/index.vue | |
| parent | a072c91cc0dc26e417c51f666e8547e08ef40942 (diff) | |
Add home page
Diffstat (limited to 'pages/editor/index.vue')
| -rw-r--r-- | pages/editor/index.vue | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pages/editor/index.vue b/pages/editor/index.vue new file mode 100644 index 0000000..4e9815a --- /dev/null +++ b/pages/editor/index.vue @@ -0,0 +1,25 @@ +<script setup lang="ts"> +definePageMeta({ + layout: 'editor' +}) +</script> + +<template> + <div id="title"> + <b>Select a quest or category to continue</b> + </div> +</template> + +<style lang="scss" scoped> +#title { + display: flex; + align-items: center; + justify-content: center; + height: 90%; + + b { + font-weight: bolder; + font-size: 1.5rem; + } +} +</style>
\ No newline at end of file |
