Skip to content

Commit

Permalink
feat(games): update game covers
Browse files Browse the repository at this point in the history
  • Loading branch information
shrpne committed Aug 9, 2023
1 parent 18a3f5d commit 49516b8
Show file tree
Hide file tree
Showing 19 changed files with 8 additions and 6 deletions.
Binary file added assets/img/game-carrots-mafia-card.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/game-chess-card.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/game-heist-card.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/game-miner-card.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/game-perfect-city-card.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/game-snatch-card.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/game-wonder-card.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
10 changes: 6 additions & 4 deletions components/CardMetagardenGame.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,20 @@ export default defineComponent({
<template>
<div class="card card--metagarden-game">
<nuxt-link class="u-relative u-display-block" :to="$i18nGetPreferredPath(`/metagarden/game/${game.slug}`)">
<img class="card__cover" :src="`/img/game-${game.slug}.jpg`" :srcset="`/img/game-${game.slug}@2x.jpg 2x`" alt="" role="presentation">
<img class="card__cover" :src="`/img/game-${game.slug}-card.jpg`" :srcset="`/img/game-${game.slug}-card@2x.jpg 2x`" alt="" role="presentation">
<div class="card__badge card__badge--coming-soon" v-if="game.isComingSoon">
{{ $td('Coming soon', 'mg-games.label-coming') }}
</div>
</nuxt-link>
<div class="card__content--small">
<h3 class="u-h4 u-mb-025">{{ game.title }}</h3>
<!--<div class="u-h--uppercase u-flex u-flex--align-center">
<img class="u-image--round u-mr-05 " :src="$store.getters['explorer/getCoinIcon'](game.coin)" alt="" role="presentation" width="16" height="16">
<!--
<div class="u-h--uppercase u-flex u-flex--align-center">
<img class="u-image--round u-mr-05" :src="$store.getters['explorer/getCoinIcon'](game.coin)" alt="" role="presentation" width="16" height="16">
{{ pretty($store.getters.getBalanceAmount(game.coin)) }}
{{ game.coin }}
</div>-->
</div>
-->
<!--<CardHead :card="card"/>-->
<!--<p class="card__action-description">{{ translate('description') }}</p>-->

Expand Down
2 changes: 1 addition & 1 deletion data/metagarden-games.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default [
description: 'Win, collect and sell unique NFTs that can be found in different WonderBoxes!',
category: 'Lottery',
coin: 'WONDER',
slug: 'magic-box',
slug: 'wonder',
ru: {
description: 'Выигрывайте, собирайте и продавайте уникальные NFT, которые можно найти в разных ВандерБоксах!',
category: 'Лотерея',
Expand Down
2 changes: 1 addition & 1 deletion pages/metagarden/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {getCard2MinterUrl} from '~/assets/utils.js';
const recentSlugList = [
'miner',
'magic-box',
'wonder',
];
export default {
Expand Down

0 comments on commit 49516b8

Please sign in to comment.