miracle/pages/index.vue

29 lines
464 B
Vue
Raw Normal View History

2019-09-27 19:49:30 +00:00
<template>
2020-12-26 09:50:33 +00:00
<div class="page">
<PageHeader>
<h1>Damillora</h1>
<p>A curious technologist, a web programmer, and a future EN Vtuber</p>
<p>EN/ID OK, JP read only</p>
</PageHeader>
<main class="container mx-auto main">
</main>
2019-09-27 19:49:30 +00:00
</div>
</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-10-04 19:48:41 +00:00
},
2020-11-09 11:16:34 +00:00
head: {
2020-02-01 20:26:13 +00:00
title: 'Damillora',
}
2019-09-27 19:49:30 +00:00
}
</script>
<style>
</style>