mirror of
https://github.com/romancm/gamebrary
synced 2025-02-17 11:38:24 +00:00
footer
This commit is contained in:
parent
64934ff284
commit
cc676f069b
2 changed files with 44 additions and 19 deletions
|
@ -1,19 +0,0 @@
|
|||
<template>
|
||||
<footer class="p-4 text-center">
|
||||
<small>
|
||||
{{ $t('global.donateMessage') }}
|
||||
<a href="https://www.paypal.me/RomanCervantes/5" target="_blank">
|
||||
{{ $t('global.donating') }}
|
||||
</a>
|
||||
,
|
||||
<a href="https://github.com/romancm/gamebrary/issues" target="_blank">
|
||||
{{ $t('global.reportBugs') }}
|
||||
</a>
|
||||
{{ $t('global.or') }}
|
||||
<a href="https://goo.gl/forms/r0juBCsZaUtJ03qb2" target="_blank">
|
||||
{{ $t('global.submitFeedback') }}
|
||||
</a>
|
||||
.
|
||||
</small>
|
||||
</footer>
|
||||
</template>
|
44
src/components/PublicPageFooter.vue
Normal file
44
src/components/PublicPageFooter.vue
Normal file
|
@ -0,0 +1,44 @@
|
|||
<template lang="html">
|
||||
<footer class="text-white container ml-auto mr-auto">
|
||||
<h3>© {{ year }} Gamebrary</h3>
|
||||
|
||||
<div class="pt-4 pb-24 flex items-center justify-center">
|
||||
<ul>
|
||||
<a class="px-1" href="/about">About</a>
|
||||
<a class="px-1" href="/privacy-policy">Privacy policy</a>
|
||||
<a class="px-1" href="/terms">Terms</a>
|
||||
<a class="px-1" href="https://github.com/romancm/gamebrary/releases" target="_blank">Releases</a>
|
||||
<a class="px-1" href="https://github.com/romancm/gamebrary/" target="_blank">
|
||||
GitHub
|
||||
</a>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<small>
|
||||
{{ $t('global.donateMessage') }}
|
||||
<a href="https://www.paypal.me/RomanCervantes/5" target="_blank">
|
||||
{{ $t('global.donating') }}
|
||||
</a>
|
||||
,
|
||||
<a href="https://github.com/romancm/gamebrary/issues" target="_blank">
|
||||
{{ $t('global.reportBugs') }}
|
||||
</a>
|
||||
{{ $t('global.or') }}
|
||||
<a href="https://goo.gl/forms/r0juBCsZaUtJ03qb2" target="_blank">
|
||||
{{ $t('global.submitFeedback') }}
|
||||
</a>
|
||||
</small>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
computed: {
|
||||
year() {
|
||||
const year = new Date().getFullYear();
|
||||
|
||||
return year;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
Loading…
Add table
Reference in a new issue