22 lines
310 B
Vue
22 lines
310 B
Vue
<template>
|
|
<div class="page">
|
|
<h1 class="title">Game Profile: Arcaea</h1>
|
|
<p><a href="https://arcaea.lowiro.com">Game Website</a></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
components: {
|
|
|
|
},
|
|
head: {
|
|
title: "Game Profile: Arcaea",
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|