Skip to content

Commit a2d73ba

Browse files
committed
update links
1 parent 0b18406 commit a2d73ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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)