miracle/pages/about.vue

25 lines
431 B
Vue

<template>
<div class="container">
<h1 class="title">About Damillora</h1>
<p>I'm a rhythm game player and idol fan. I also create videos and write blog posts. </p>
<div class="back">
<nuxt-link to="/">back</nuxt-link>
</div>
</div>
</template>
<script>
export default {
components: {
},
transition: {
name: 'nanao',
}
}
</script>
<style>
</style>