miracle/pages/about.vue

28 lines
498 B
Vue
Raw Normal View History

2019-09-27 19:49:30 +00:00
<template>
<div class="page">
2020-12-26 09:50:33 +00:00
<PageHeader>
<h1>About Damillora</h1>
</PageHeader>
<main class="container mx-auto main">
<p>Hello! My name is Damillora.</p>
<p>I enjoy playing rhythm games, and talking about idol and rhythm games in general!</p>
</main>
</div>
2019-09-27 19:49:30 +00:00
</template>
<script>
2020-12-26 09:50:33 +00:00
import PageHeader from '~/components/PageHeader';
2019-09-27 19:49:30 +00:00
export default {
components: {
2020-12-26 09:50:33 +00:00
PageHeader
2019-09-27 19:49:30 +00:00
},
2020-11-09 11:16:34 +00:00
head: {
2020-02-01 20:26:13 +00:00
title: 'About Damillora',
}
2019-09-27 19:49:30 +00:00
}
</script>
<style>
</style>