29 lines
464 B
Vue
29 lines
464 B
Vue
|
|
<template>
|
|
<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>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PageHeader from '~/components/PageHeader';
|
|
|
|
export default {
|
|
components: {
|
|
PageHeader
|
|
},
|
|
head: {
|
|
title: 'Damillora',
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|