27 lines
516 B
Vue
27 lines
516 B
Vue
<template>
|
|
<div class="page">
|
|
<PageHeader>
|
|
<h1 class="title">Game Profile: BanG Dream! Girls Band Party (JP)</h1>
|
|
<p><a href="https://bang-dream.bushimo.jp/">Game Website</a></p>
|
|
</PageHeader>
|
|
<main class="container mx-auto main">
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PageHeader from "@/components/PageHeader";
|
|
|
|
export default {
|
|
components: {
|
|
PageHeader,
|
|
},
|
|
head: {
|
|
title: "Game Profile: BanG Dream! Girls Band Party (JP)",
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|