Added footer

This commit is contained in:
Vivek Santayana 2022-09-01 15:32:52 +01:00
parent 0df7435744
commit e25d0c5865
2 changed files with 27 additions and 4 deletions

View File

@ -1,6 +1,11 @@
<script>
import Footer from '@/components/Footer.vue'
export default {
name: 'Content'
name: 'Content',
components: {
Footer
}
}
</script>
<template>
@ -8,6 +13,5 @@
<slot>
</slot>
</div>
<Footer/>
</template>
<style>
</style>

View File

@ -0,0 +1,19 @@
<script>
export default {
name: 'Footer'
}
</script>
<template>
<footer class="mt-20 max-w-2xl mx-auto bg-lime-50 p-3 rounded-xl" v-if="!['CatchAll', 'Licenses', 'NotFound', 'Refused'].includes($route.name)">
<hr class="border-gray-400 w-2/3 mx-auto"/>
<p class="text-sm">
<em class="uncial-antiqua">Wanderhome</em> &copy; Possum Creek Games Inc.
The <em><span class="uncial-antiqua">Wanderhome</span> Quiz | V.S.</em> is an independent production by Vivek Santayana and is not affiliated with Possum Creek Games Inc.
It is published under the Wanderhome Third Party License.
The questions used in the quiz were written by Vivek Santayana.
For more information, please see the <router-link class="underline hover:bg-orange-200" to="/about/licenses">Licenses section</router-link>.
</p>
</footer>
</template>
<style>
</style>