Incognito-Wiki/src/config/sidebar.mjs
msa46 c590f77d96
Some checks failed
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled
feat: publish legacy course archive
2026-08-03 15:12:11 +02:00

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' },
],
},
];