gamebrary/src/components/PageFooter.vue

20 lines
548 B
Vue
Raw Normal View History

2019-08-20 04:05:58 +00:00
<template>
2020-09-01 22:04:43 +00:00
<footer class="p-4 text-center">
2019-11-08 20:34:06 +00:00
<small>
2020-10-05 18:42:04 +00:00
{{ $t('global.donateMessage') }}
2019-11-14 21:10:10 +00:00
<a href="https://www.paypal.me/RomanCervantes/5" target="_blank">
2020-10-05 18:42:04 +00:00
{{ $t('global.donating') }}
2019-11-08 20:34:06 +00:00
</a>
,
2019-11-14 21:10:10 +00:00
<a href="https://github.com/romancm/gamebrary/issues" target="_blank">
2020-10-05 18:42:04 +00:00
{{ $t('global.reportBugs') }}
2019-11-08 20:34:06 +00:00
</a>
{{ $t('global.or') }}
2019-11-14 21:10:10 +00:00
<a href="https://goo.gl/forms/r0juBCsZaUtJ03qb2" target="_blank">
2020-10-05 18:42:04 +00:00
{{ $t('global.submitFeedback') }}
2019-11-08 20:34:06 +00:00
</a>
.
</small>
</footer>
2019-08-20 04:05:58 +00:00
</template>