Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/web/app/components/TopPageSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ const getAnchorPath = computed(
class="link-button"
background-color="vue-green/200"
color="white"
:href="getAnchorPath('#ticket')"
:href="getAnchorPath('#timetable')"
target="_top"
>{{ $t('ticket.title') }}</VFLinkButton
>{{ $t('time-table.title') }}</VFLinkButton
>
<VFLinkButton
class="link-button"
Expand All @@ -51,10 +51,10 @@ const getAnchorPath = computed(
class="link-button"
background-color="vue-green/200"
color="white"
:href="getAnchorPath('#store')"
:href="getAnchorPath('#access')"
target="_top"
>
{{ $t('store.title') }}
{{ $t('access.title') }}
</VFLinkButton>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/app/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"copied": "Copied",
"official_site": "Vue Fes Japan Official Website",
"top_page": {
"latest_information": "Tickets are now on sale! The deadline is approaching on October 14 at 24:00, so be sure to purchase yours soon!",
"latest_information": "Enjoy a day full of opportunities to learn the latest technologies and connect with fellow developers! Let’s make the most of it!",
"date": "October 19th, 2024",
"note": "note official"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/web/app/lang/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"saturday": "土"
},
"top_page": {
"latest_information": "チケット好評発売中! いよいよ10/14(月祝)24:00締切、お早めにお買い求めください!",
"latest_information": "最新の技術を学び、仲間と交流するチャンスが盛りだくさん!この一日を楽しもう!!",
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@448jp 文言を更新しましたが、よりふさわしいのがあれば教えてください mm

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jiyuujin
ここは思い切ってテキストなしにしてはどうでしょうか。ボタンは必要性が高そうなタイムテーブル、スピーカー、イベントの3つにする感じで。

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

更新済み

"date": "2024.10.19",
"note": "公式 note"
},
Expand Down
12 changes: 6 additions & 6 deletions apps/web/app/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ useHead({

<template>
<TopPageSection />
<MessagePageSection />
<TicketPageSection v-if="config.public.enableRegisterTicket" />
<TimeTablePageSection v-if="config.public.showTimetable" />
<SpeakerPageSection :data="speakers" />
<!--
<VolunteerPageSection v-if="!config.public.enableRegisterTicket && locale === 'ja'" />
-->
<EventPageSection v-if="config.public.showEvent" :data="speakers" />
<StorePageSection v-if="config.public.showStore" />
<TimeTablePageSection v-if="config.public.showTimetable" />
<AccessPageSection />
<TicketPageSection v-if="config.public.enableRegisterTicket" />
<SponsorPageSection :data="sponsors" />
<CooperationPartnerSection />
<MessagePageSection />
<!--
<VolunteerPageSection v-if="!config.public.enableRegisterTicket && locale === 'ja'" />
-->
<FormPageSection />
<TeamPageSection :data="staffs" />
</template>