because I got bored of customising my CV for every job
1export type NavLink = {
2 to: string;
3 label: string;
4 adminOnly?: boolean;
5};
6
7export const defaultNavLinks: NavLink[] = [
8 { to: "/", label: "Dashboard" },
9 { to: "/job-experience", label: "Job Experience" },
10 { to: "/education", label: "Education" },
11 { to: "/cvs", label: "My CVs" },
12 { to: "/vacancies", label: "Vacancies" },
13 { to: "/profiles", label: "Profiles" },
14 { to: "/settings", label: "Settings" },
15 { to: "/admin", label: "Admin", adminOnly: true },
16 { to: "/system", label: "System", adminOnly: true },
17];