2019-09-27 19:49:30 +00:00
|
|
|
<template>
|
2019-11-29 20:13:03 +00:00
|
|
|
<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>
|
2021-01-19 18:44:20 +00:00
|
|
|
<p>I'm currently reconstructing my about page for new things, but I'm a web developer, rhythm game player and music enthusiast!</p>
|
|
|
|
<h2>GPG public key</h2>
|
|
|
|
<p>My public key is accessible <a href="/damillora.asc">here</a>.</p>
|
|
|
|
<h2>Producer Meishi</h2>
|
|
|
|
<div class="gallery">
|
|
|
|
<GalleryImage :src="require('~/assets/images/meishi/front.png')" />
|
|
|
|
<GalleryImage :src="require('~/assets/images/meishi/back.png')" />
|
|
|
|
</div>
|
2020-12-26 09:50:33 +00:00
|
|
|
</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';
|
2021-01-19 18:44:20 +00:00
|
|
|
import GalleryImage from '@/components/GalleryImage';
|
2019-09-27 19:49:30 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2021-01-19 18:44:20 +00:00
|
|
|
PageHeader,
|
|
|
|
GalleryImage,
|
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>
|