viktor-reference/src/views/HomeView.vue
2022-09-26 17:20:19 +02:00

13 lines
376 B
Vue

<script setup lang="ts">
import TextBlock from "@/components/TextBlock.vue";</script>
<template>
<TextBlock>
<h1>Viktor Kraastav</h1>
<h2>Character Reference Page</h2>
<h3>Welcome to Viktor's Ref Page</h3>
<p>Here you can learn all about the ankylosaurus named Viktor.</p>
<p>Pick an item from the navigation to dive in!</p>
</TextBlock>
</template>