Added footer
This commit is contained in:
parent
0df7435744
commit
e25d0c5865
@ -1,6 +1,11 @@
|
|||||||
<script>
|
<script>
|
||||||
|
import Footer from '@/components/Footer.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Content'
|
name: 'Content',
|
||||||
|
components: {
|
||||||
|
Footer
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
@ -8,6 +13,5 @@
|
|||||||
<slot>
|
<slot>
|
||||||
</slot>
|
</slot>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
<Footer/>
|
||||||
<style>
|
</template>
|
||||||
</style>
|
|
19
client/src/components/Footer.vue
Normal file
19
client/src/components/Footer.vue
Normal 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> © 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>
|
Loading…
Reference in New Issue
Block a user