89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
import { recoveredCourseSidebar } from './recovered-course-sidebar.mjs';
|
|
|
|
export const sidebar = [
|
|
{ label: 'Home', link: '/' },
|
|
{ label: 'About Incognito', link: '/about-incognito/' },
|
|
{ slug: 'previous-exams-and-documents' },
|
|
{
|
|
label: 'Bachelor',
|
|
items: [
|
|
{ slug: 'bachelor' },
|
|
{
|
|
label: 'Year 1',
|
|
items: [
|
|
{ slug: 'bachelor/year-1' },
|
|
{ slug: 'bachelor/year-1/project-1-1' },
|
|
{ slug: 'bachelor/year-1/project-1-2' },
|
|
...recoveredCourseSidebar['bachelor/year-1'],
|
|
],
|
|
},
|
|
{
|
|
label: 'Year 2',
|
|
items: [
|
|
{ slug: 'bachelor/year-2' },
|
|
{ slug: 'bachelor/year-2/project-2-1' },
|
|
{ slug: 'bachelor/year-2/project-2-2' },
|
|
{ slug: 'bachelor/year-2/honours-programme' },
|
|
...recoveredCourseSidebar['bachelor/year-2'],
|
|
],
|
|
},
|
|
{
|
|
label: 'Year 3',
|
|
items: [
|
|
{ slug: 'bachelor/year-3' },
|
|
{ slug: 'bachelor/year-3/bachelors-thesis' },
|
|
{ slug: 'bachelor/year-3/project-3-1' },
|
|
{ slug: 'bachelor/year-3/study-abroad' },
|
|
{ slug: 'bachelor/year-3/honours-programme' },
|
|
...recoveredCourseSidebar['bachelor/year-3'],
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'Master AI',
|
|
items: [
|
|
{ slug: 'master-ai' },
|
|
{
|
|
label: 'Year 1',
|
|
items: [
|
|
{ slug: 'master-ai/year-1' },
|
|
{ slug: 'master-ai/year-1/research-project-1' },
|
|
{ slug: 'master-ai/year-1/research-project-2' },
|
|
...recoveredCourseSidebar['master-ai/year-1'],
|
|
],
|
|
},
|
|
{
|
|
label: 'Year 2',
|
|
items: [{ slug: 'master-ai/year-2' }],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'Master DSDM',
|
|
items: [
|
|
{ slug: 'master-dsdm' },
|
|
{
|
|
label: 'Year 1',
|
|
items: [
|
|
{ slug: 'master-dsdm/year-1' },
|
|
...recoveredCourseSidebar['master-dsdm/year-1'],
|
|
],
|
|
},
|
|
{
|
|
label: 'Year 2',
|
|
items: [{ slug: 'master-dsdm/year-2' }],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'Useful Information',
|
|
items: [
|
|
{ slug: 'useful-information' },
|
|
{ slug: 'useful-information/dke-locations' },
|
|
{ slug: 'useful-information/handy-locations' },
|
|
{ slug: 'useful-information/it-services' },
|
|
{ slug: 'useful-information/laptop-buying-advice' },
|
|
],
|
|
},
|
|
];
|