feat: add HomeView

This commit is contained in:
Sebin Nyshkim 2022-09-26 17:20:19 +02:00
parent 020f7c1160
commit e7cc3488e0

13
src/views/HomeView.vue Normal file
View file

@ -0,0 +1,13 @@
<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>