33 lines
614 B
Vue
33 lines
614 B
Vue
|
<template>
|
||
|
<div class="page">
|
||
|
<PageHeader imageType="cue-mei2">
|
||
|
<h1 class="title">Game Profile: ARGONAVIS from BanG Dream! AAside</h1>
|
||
|
<p><a href="https://aaside.bushimo.jp">Game Website</a></p>
|
||
|
</PageHeader>
|
||
|
<!--
|
||
|
<main class="container mx-auto main">
|
||
|
<h2>My Review</h2>
|
||
|
<blockquote>
|
||
|
</blockquote>
|
||
|
<p><a href="">Read more</a></p>
|
||
|
</main>
|
||
|
-->
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import PageHeader from "@/components/PageHeader";
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
PageHeader,
|
||
|
},
|
||
|
head: {
|
||
|
title: "Game Profile: ",
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|