17 lines
454 B
Vue
17 lines
454 B
Vue
<script setup lang="ts">
|
|
import WelcomeHeader from "@/components/WelcomeHeader.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<WelcomeHeader>
|
|
<template #main>Viktor Kraastav</template>
|
|
<template #sub>Character Reference Page</template>
|
|
</WelcomeHeader>
|
|
|
|
<section>
|
|
<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>
|
|
</section>
|
|
</template>
|