miracle/pages/games/template.vue

31 lines
518 B
Vue

<template>
<div class="page">
<PageHeader>
<h1 class="title">Game Profile: </h1>
<p><a href="">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>