aboutsummaryrefslogtreecommitdiffstats
path: root/pages/index.vue
blob: dd46b3130ab12630cfa503c9c5752c10c97f0742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script setup lang="ts">
definePageMeta({
  layout: 'editor'
})
</script>

<template>
  <div id="title">
    <h1>Select a quest or category to continue</h1>
  </div>
</template>

<style lang="scss" scoped>
#title {
  text-align: center;
}
</style>