Skip to content

Commit 609f7dc

Browse files
authored
Merge pull request #368 from vuejs-jp/enhance/the-day-layout
[10/15 当日レイアウト切替] update layout
2 parents 5bfbf10 + 0c9edd8 commit 609f7dc

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

apps/web/app/components/TopPageSection.vue

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,19 @@ const getAnchorPath = computed(
2727
</p>
2828
</div>
2929
<div class="sns-link-wrapper">
30+
<!--
3031
<h2 class="official-announcement">
3132
{{ $t('top_page.latest_information') }}
3233
</h2>
34+
-->
3335
<div class="link-buttons">
3436
<VFLinkButton
3537
class="link-button"
3638
background-color="vue-green/200"
3739
color="white"
38-
:href="getAnchorPath('#ticket')"
40+
:href="getAnchorPath('#timetable')"
3941
target="_top"
40-
>{{ $t('ticket.title') }}</VFLinkButton
42+
>{{ $t('time-table.title') }}</VFLinkButton
4143
>
4244
<VFLinkButton
4345
class="link-button"
@@ -51,10 +53,10 @@ const getAnchorPath = computed(
5153
class="link-button"
5254
background-color="vue-green/200"
5355
color="white"
54-
:href="getAnchorPath('#store')"
56+
:href="getAnchorPath('#event')"
5557
target="_top"
5658
>
57-
{{ $t('store.title') }}
59+
{{ $t('event.title') }}
5860
</VFLinkButton>
5961
</div>
6062
</div>

apps/web/app/pages/index.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@ useHead({
4444

4545
<template>
4646
<TopPageSection />
47-
<MessagePageSection />
48-
<TicketPageSection v-if="config.public.enableRegisterTicket" />
47+
<TimeTablePageSection v-if="config.public.showTimetable" />
4948
<SpeakerPageSection :data="speakers" />
50-
<!--
51-
<VolunteerPageSection v-if="!config.public.enableRegisterTicket && locale === 'ja'" />
52-
-->
5349
<EventPageSection v-if="config.public.showEvent" :data="speakers" />
5450
<StorePageSection v-if="config.public.showStore" />
55-
<TimeTablePageSection v-if="config.public.showTimetable" />
5651
<AccessPageSection />
52+
<TicketPageSection v-if="config.public.enableRegisterTicket" />
5753
<SponsorPageSection :data="sponsors" />
5854
<CooperationPartnerSection />
55+
<MessagePageSection />
56+
<!--
57+
<VolunteerPageSection v-if="!config.public.enableRegisterTicket && locale === 'ja'" />
58+
-->
5959
<FormPageSection />
6060
<TeamPageSection :data="staffs" />
6161
</template>

0 commit comments

Comments
 (0)