Skip to content

Commit 366fc83

Browse files
committed
fix: fix 2024 diversity route
1 parent 6e09127 commit 366fc83

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed
Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
import {
2-
ROUTE_2024_CFP,
3-
ROUTE_2024_JOB_OFFERS,
4-
ROUTE_2024_SCHEDULE,
5-
ROUTE_2024_SPEAKERS,
6-
ROUTE_2024_TALKS,
7-
ROUTE_ABOUT_US,
8-
ROUTE_ACCOMMODATION,
9-
ROUTE_CODE_OF_CONDUCT,
10-
ROUTE_DIVERSITY,
11-
ROUTE_HOME,
12-
ROUTE_SPONSORSHIP,
13-
ROUTE_TRAVEL,
2+
ROUTE_2024_CFP,
3+
ROUTE_2024_DIVERSITY,
4+
ROUTE_2024_JOB_OFFERS,
5+
ROUTE_2024_SCHEDULE,
6+
ROUTE_2024_SPEAKERS,
7+
ROUTE_2024_TALKS,
8+
ROUTE_ABOUT_US,
9+
ROUTE_ACCOMMODATION,
10+
ROUTE_CODE_OF_CONDUCT,
11+
ROUTE_HOME,
12+
ROUTE_SPONSORSHIP,
13+
ROUTE_TRAVEL,
1414
} from "../../constants/routes";
1515

1616
export interface NavigationItem {
17-
id: string;
18-
link: string;
17+
id: string;
18+
link: string;
1919
}
2020

2121
export const navigationItems2024: NavigationItem[] = [
22-
{id: "Home", link: ROUTE_HOME},
23-
{id: "Code of Conduct", link: ROUTE_CODE_OF_CONDUCT},
24-
{id: "Sponsors", link: "/2024#sponsors"},
25-
{id: "SCHEDULE", link: ROUTE_2024_SCHEDULE},
26-
{id: "Talks", link: ROUTE_2024_TALKS},
27-
//{ id: "Workshops", link: ROUTE_WORKSHOPS },
28-
{id: "JOB OFFERS", link: ROUTE_2024_JOB_OFFERS},
29-
//{ id: "Communities", link: ROUTE_COMMUNITIES },
30-
{id: "Speakers", link: ROUTE_2024_SPEAKERS},
31-
{id: "About Us", link: ROUTE_ABOUT_US},
32-
{id: "Travel", link: ROUTE_TRAVEL},
33-
//{ id: "KCD - Barcelona", link: ROUTE_KCD },
34-
{id: "Sponsorship", link: ROUTE_SPONSORSHIP},
22+
{ id: "Home", link: ROUTE_HOME },
23+
{ id: "Code of Conduct", link: ROUTE_CODE_OF_CONDUCT },
24+
{ id: "Sponsors", link: "/2024#sponsors" },
25+
{ id: "SCHEDULE", link: ROUTE_2024_SCHEDULE },
26+
{ id: "Talks", link: ROUTE_2024_TALKS },
27+
//{ id: "Workshops", link: ROUTE_WORKSHOPS },
28+
{ id: "JOB OFFERS", link: ROUTE_2024_JOB_OFFERS },
29+
//{ id: "Communities", link: ROUTE_COMMUNITIES },
30+
{ id: "Speakers", link: ROUTE_2024_SPEAKERS },
31+
{ id: "About Us", link: ROUTE_ABOUT_US },
32+
{ id: "Travel", link: ROUTE_TRAVEL },
33+
//{ id: "KCD - Barcelona", link: ROUTE_KCD },
34+
{ id: "Sponsorship", link: ROUTE_SPONSORSHIP },
3535
];
3636

3737
export const subMenuItems2024: NavigationItem[] = [
38-
{id: "DIVERSITY", link: ROUTE_DIVERSITY},
39-
{id: "Cfp Committee", link: ROUTE_2024_CFP},
40-
{id: "Accommodation", link: ROUTE_ACCOMMODATION},
41-
//{ id: "Attendee information", link: ROUTE_ATTENDEE },
42-
//{ id: "Speaker information", link: ROUTE_SPEAKER_INFO },
43-
//{ id: "Session feedback", link: ROUTE_SESSION_FEEDBACK },
38+
{ id: "DIVERSITY", link: ROUTE_2024_DIVERSITY },
39+
{ id: "Cfp Committee", link: ROUTE_2024_CFP },
40+
{ id: "Accommodation", link: ROUTE_ACCOMMODATION },
41+
//{ id: "Attendee information", link: ROUTE_ATTENDEE },
42+
//{ id: "Speaker information", link: ROUTE_SPEAKER_INFO },
43+
//{ id: "Session feedback", link: ROUTE_SESSION_FEEDBACK },
4444
];

0 commit comments

Comments
 (0)