diff --git a/index.html b/index.html index 8b62890..cd9906f 100644 --- a/index.html +++ b/index.html @@ -379,7 +379,7 @@ const PROJECTS = [ { id: "boardgame", title: "Online Multyplayer Game", - description: "Ein online multyplayer Brettspiel mit Server, Spielclient und KI-Spieler entstanden als Gruppenarbeit einer Vorlesung.", + description: "Ein online multyplayer Brettspiel mit Server, Spielclient und KI-Spieler entstanden als Gruppenarbeit mit 5 weiteren Kommilitonen.", tags: ["C#", ".net", "Unity"], github: "https://github.com/MarvinKrausser/BoardgameServer", blocks: [ @@ -459,7 +459,6 @@ class ProjectSection extends HTMLElement { this.innerHTML = `
-

${p.title}

${p.title}

${p.description}

@@ -498,7 +497,7 @@ function buildNav() { // Statische Sections const staticSections = [ - { id: "hero", label: "Hallo!", group: null }, + { id: "hero", label: "Hallo!", group: null, idx: "00" }, ]; // Projekt-Sections nach dem Rendern einsammeln @@ -550,7 +549,6 @@ function buildNav() { closeDrawer(); }; ma.textContent = s.idx ? `${s.idx} – ${s.label}` : s.label; - ma.onclick = closeDrawer; drawerLinks.appendChild(ma); }); } @@ -584,7 +582,7 @@ function scrollToSection(id) { behavior: 'smooth' }); - history.replaceState(null, null, ' '); + history.replaceState(null, null, window.location.pathname); }