miracle/pages/about.vue

27 lines
491 B
Vue

<template>
<div class="container">
<h1 class="title">About Damillora</h1>
<p>Hello! My name is Damillora.</p>
<p>I enjoy playing rhythm games, and talking about idol and rhythm games in general!</p>
<div class="back">
<nuxt-link to="/">back</nuxt-link>
</div>
</div>
</template>
<script>
export default {
components: {
},
transition: {
name: 'nanao',
}
}
</script>
<style>
</style>