Skip to content

Commit 61e2823

Browse files
authored
Merge pull request #582 from vuejs-jp/enhance/main-layout
[10/23] update main layout
2 parents 8961f44 + e72de72 commit 61e2823

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

app/components/TopPageSection.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ const components = computed<ImageList>(() => getImageListByDevice(device.value))
8181
<TwitterButton />
8282
</div>
8383
</div>
84+
<VoiceAudioSpectrum />
8485
</template>
8586

8687
<style lang="ts" scoped>

app/pages/index.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ useHead({
2020
<main>
2121
<NavPageSectionContainer />
2222
<TopPageSection />
23-
<MessagePageSection />
24-
<SpeakerPageSection />
2523
<template v-if="showTimetable">
2624
<TimetablePageSection />
2725
</template>
26+
<SpeakerPageSection />
2827
<EventPageSection />
2928
<template v-if="canPurchase">
30-
<TicketPageSection />
3129
<AccessSection />
30+
<TicketPageSection />
3231
</template>
3332
<SponsorPageSection />
33+
<MessagePageSection />
3434
<FormPageSection />
3535
<TeamPageSection />
3636
<FooterPageSection />

app/utils/constants.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ export type NavLink = {
66
}
77

88
export const navLinks: NavLink[] = [
9-
{ text: 'Message', link: '/#message' },
109
{ text: 'Speakers', link: '/#speakers' },
1110
{ text: 'Sponsors', link: '/#sponsors' },
11+
{ text: 'Message', link: '/#message' },
1212
{ text: 'Contact', link: '/#form' },
1313
]
1414

1515
export const navFullLinks = (showTimetable: boolean) =>
1616
[
17-
{ text: 'Message', link: '/#message' },
18-
{ text: 'Speakers', link: '/#speakers' },
1917
...[showTimetable ? { text: 'Time table', link: '/#timetable' } : undefined],
18+
{ text: 'Speakers', link: '/#speakers' },
2019
{ text: 'Events', link: '/#events' },
21-
{ text: 'Ticket', link: '/#ticket' },
2220
{ text: 'Access', link: '/#access' },
21+
{ text: 'Ticket', link: '/#ticket' },
2322
{ text: 'Sponsors', link: '/#sponsors' },
23+
{ text: 'Message', link: '/#message' },
2424
{ text: 'Contact', link: '/#form' },
2525
].filter((l) => {
2626
return l !== undefined

0 commit comments

Comments
 (0)