Files
janishutz 27560cd448 feat!: restructure erstie guide, expand
Expanded the erstie guide massively (added guide for each semester),
restructured to new URLs, added summaries details
2026-08-17 11:42:25 +02:00

82 lines
3.3 KiB
TypeScript

import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "janishutz-eth",
description: "ETH resources, summaries, tips and tricks by janishutz",
markdown: {
'math': true,
},
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Summaries', link: '/summaries' },
{ text: 'ETH (Erstie) Guide', link: '/guide', activeMatch: '/guide/' },
],
search: {
'provider': 'local'
},
sidebar: {
'/guide': [
{
text: 'A guide to ETH',
base: '/guide',
items: [
{ text: 'Introduction', link: '/' },
{ text: 'Student Life', link: '/student-life' },
{ text: 'Use of AI', link: '/pretendintelligence' },
{ text: 'Exam (Preparation)', link: '/exams' },
{ text: 'Buildings', link: '/buildings' },
{ text: 'Reference / Useful links', link: '/reference' },
]
},
{
text: 'Semesters',
base: '/guide/semesters',
items: [
{ text: 'Semester Planning', link: '/semester-planning' },
{ text: 'Semester 1', link: '/semester1' },
{ text: 'Semester 2', link: '/semester2' },
{ text: 'Semester 3', link: '/semester3' },
{ text: 'Semester 4', link: '/semester4' },
{ text: 'Semester 5 and onwards', link: '/semester5-onwards' },
{ text: 'Masters', link: '/masters' },
]
},
{
text: 'Infrastructure and More',
base: '/guide/infra',
items: [
{ text: 'ETH Infrastructure Guide', link: '/' },
{ text: 'Git & GitLab', link: '/git' },
{ text: 'Things to consider / try', link: '/things-to-try' },
]
}
],
'/summaries': [
{
text: 'Summaries',
base: '/summaries',
items: [
{ text: 'Introduction', link: '/' },
{ text: 'Semester 1', link: '/semester1' },
{ text: 'Semester 2', link: '/semester2' },
{ text: 'Semester 3', link: '/semester3' },
{ text: 'Semester 4', link: '/semester4' },
{ text: 'Core Subjects', link: '/core' },
{ text: 'Electives', link: '/electives' },
]
}
]
},
footer: {
message: 'Not affiliated with or endorsed by ETH Zurich. Released under CC-BY-SA 4.0',
copyright: 'Copyright © 2026 Janis Hutz'
},
socialLinks: [
{ icon: 'git', link: 'https://git.janishutz.com/eth-janishutz/website' }
]
}
})