mirror of
https://github.com/romancm/gamebrary
synced 2024-12-19 15:53:06 +00:00
16 lines
370 B
Vue
16 lines
370 B
Vue
<template lang="html">
|
|
<b-link
|
|
href="https://www.igdb.com/"
|
|
class="igdb-credit m-0 d-flex text-center text-decoration-none"
|
|
target="_blank"
|
|
>
|
|
<small class="text-muted pr-1">{{ $t('poweredBy') }}</small>
|
|
|
|
<b-img
|
|
center
|
|
width="40"
|
|
:src="`/static/img/igdb-logo.png`"
|
|
:alt="$t('poweredByIgdb')"
|
|
/>
|
|
</b-link>
|
|
</template>
|