32 lines
824 B
Vue
32 lines
824 B
Vue
<template>
|
|
<div class="page">
|
|
<PageHeader>
|
|
<h1 class="title">Game Profile: 欅坂46・日向坂46 UNI'S ON AIR</h1>
|
|
<p><a href="https://keyahina-unisonair.com/">Game Website</a></p>
|
|
</PageHeader>
|
|
<main class="container mx-auto main">
|
|
<h2>My Review</h2>
|
|
<blockquote>
|
|
Suffice to say, I enjoy this game more than Nogizaka46's rhythm game, which requires memorization of songs a bit too much.
|
|
</blockquote>
|
|
<p><a href="https://blog.nanao.moe/game-reviews/keyakizaka46-hinatazaka46-unis-on-air/">Read more</a></p>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PageHeader from "@/components/PageHeader";
|
|
|
|
export default {
|
|
components: {
|
|
PageHeader,
|
|
},
|
|
head: {
|
|
title: "Game Profile: 欅坂46・日向坂46 UNI'S ON AIR",
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|