Skip to content

Commit

Permalink
fix: path
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyuujin committed Apr 18, 2024
1 parent 542d833 commit bb49263
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions app/components/event/EventSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import { panelers } from '~/utils/events-panel-discussion.constants'
</div>
<div class="event-menu">
<EventCard
src="/event/refreshment_space.png"
src="event/refreshment_space.png"
:alt="`${$t('top.refreshment')} supported by giftee, HENNGE, TAM`"
>
<template #title>
Expand All @@ -62,15 +62,15 @@ import { panelers } from '~/utils/events-panel-discussion.constants'
{{ $t('top.refreshment_explain') }}
</template>
</EventCard>
<EventCard src="/event/creative_wall.png" :alt="$t('top.creative_wall')">
<EventCard src="event/creative_wall.png" :alt="$t('top.creative_wall')">
<template #title>
{{ $t('top.creative_wall') }}
</template>
<template #description>
{{ $t('top.creative_wall_explain') }}
</template>
</EventCard>
<EventCard src="/event/hands_on.png" :alt="`${$t('top.events_handson')}`">
<EventCard src="event/hands_on.png" :alt="`${$t('top.events_handson')}`">
<template #title>
{{ $t('top.events_handson') }}
</template>
Expand All @@ -82,7 +82,7 @@ import { panelers } from '~/utils/events-panel-discussion.constants'
</i18n-t>
</template>
</EventCard>
<EventCard src="/event/tattoo_space.png" :alt="`${$t('top.tattoo_space')}`">
<EventCard src="event/tattoo_space.png" :alt="`${$t('top.tattoo_space')}`">
<template #title>
{{ $t('top.tattoo_space') }}
</template>
Expand Down
16 changes: 8 additions & 8 deletions app/utils/store.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,58 @@ import { StoreMenu } from '~/types/app'

export const storeMenu: StoreMenu[] = [
{
imgSrc: '/store/vue-t-shirt.png',
imgSrc: 'store/vue-t-shirt.png',
nameKey: 'tshirt',
price: '¥2,500',
textKey: 'tshirt_detail',
color: 'ネイビー',
size: 'S / M / L / XL',
},
{
imgSrc: '/store/vue-parka.png',
imgSrc: 'store/vue-parka.png',
nameKey: 'parka',
price: '¥5,500',
textKey: 'parka_detail',
color: 'グレー',
size: 'S / M / L / XL',
},
{
imgSrc: '/store/vue-badge.png',
imgSrc: 'store/vue-badge.png',
nameKey: 'vue_badge',
price: '¥600',
textKey: 'vue_badge_detail',
size: 'W19×H17mm',
},
{
imgSrc: '/store/nuxt-badge.png',
imgSrc: 'store/nuxt-badge.png',
nameKey: 'nuxt_badge',
price: '¥600',
textKey: 'nuxt_badge_detail',
size: 'W19×H14mm',
},
{
imgSrc: '/store/vite-badge.png',
imgSrc: 'store/vite-badge.png',
nameKey: 'vite_badge',
price: '¥600',
textKey: 'vite_badge_detail',
size: 'W18×H18mm',
},
{
imgSrc: '/store/vue-sticker.png',
imgSrc: 'store/vue-sticker.png',
nameKey: 'sticker',
price: '¥300',
textKey: 'sticker_detail',
size: 'W200×H122mm',
},
{
imgSrc: '/store/vue-cushion.png',
imgSrc: 'store/vue-cushion.png',
nameKey: 'cushion',
price: '¥5,000',
textKey: 'cushion_detail',
size: 'W360×H360mm',
},
{
imgSrc: '/store/vue-tape.png',
imgSrc: 'store/vue-tape.png',
nameKey: 'tape',
price: '¥1,100',
textKey: 'tape_detail',
Expand Down

0 comments on commit bb49263

Please sign in to comment.