miracle/pages/sns.vue

35 lines
664 B
Vue

<template>
<div class="page">
<h1 class="title">Social Media</h1>
<p>I maintain a presence at a number of social media, be sure to follow me there!</p>
<p>
<ul>
<li>
<p>YouTube:</p>
<p><a href="/channel">Damillora</a></p>
</li>
<li>
<p>Twitter:</p>
<p><a href="/twitter">Damillora</a></p>
</li>
</ul>
</p>
</div>
</template>
<script>
export default {
components: {
},
meta: {
title: 'Social Media',
}
}
</script>
<style>
</style>