Skip to content

Commit

Permalink
update displayed link and index primary btn
Browse files Browse the repository at this point in the history
  • Loading branch information
josix committed Aug 26, 2023
1 parent 0299106 commit 7dc0470
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configs/pageLanding.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const landingButtonConfig = {
path: '/conference/schedule',
textKey: 'checkEvents',
isPrimary: true,
isLarge: true,
isLarge: false,
},
BUY_TICKETS: {
isExternalLink: false,
Expand Down
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default {
data() {
return {
isOpened: false,
primaryButton: landingButtonConfig.BUY_TICKETS,
primaryButton: landingButtonConfig.CHECK_EVENTS,
secondaryButton: landingButtonConfig.SECONDARY_JOIN_US,
selectedSponsor: {},
}
Expand Down
6 changes: 3 additions & 3 deletions store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const state = () => ({
conferenceYear: '2023',
conferenceDate: '2023-09-02',
showSpeakingPage: false,
showAboutStaffPage: false,
showAboutStaffPage: true,
showSchedulePage: true,
showSponsorPage: false,
showRegistrationPage: true,
Expand All @@ -23,9 +23,9 @@ export const state = () => ({
showConferencePage: true,
showVenuePage: true,
showIndexSponsorSection: true,
showIndexSecondaryBtn: true,
showIndexSecondaryBtn: false,
aboutHideItems: ['apacCommunity'], // ['pycontw', 'apacCommunity', 'history', 'community', 'codeOfConduct']
eventsHideItems: ['openSpaces'], // ['sprints', 'openSpaces', 'jobs']
eventsHideItems: [], // ['sprints', 'openSpaces', 'jobs']
conferenceHideItems: [], // ['keynotes', 'talks', 'tutorials', 'panelDiscussion']
registrationHideItems: [], // ['tickets', 'financialAid']
venueHideItems: [], // ['venueInfo', 'accommodation']
Expand Down

0 comments on commit 7dc0470

Please sign in to comment.