From 5a243f332a72af2c4b6c587b849c6c1004b5f946 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Sun, 25 Jan 2026 15:40:53 +0100 Subject: [PATCH] chore: temporarily disable Tailwind CSS section - Comment out Tailwind nav links in header and sidebar - Comment out Tailwind card on landing page - Remove tailwind from router SECTIONS array - Remove tailwind from landing page progress tracking Tailwind content and styles remain in codebase for easy re-enabling. --- src/app.js | 2 +- src/helpers/router.js | 2 +- src/index.html | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app.js b/src/app.js index 0014d40..e069860 100644 --- a/src/app.js +++ b/src/app.js @@ -2347,7 +2347,7 @@ function renderFooterLessonLinks() { * Update progress indicators on landing page */ function updateLandingProgress() { - ["css", "html", "tailwind", "markdown"].forEach((sectionId) => { + ["css", "html", "markdown"].forEach((sectionId) => { // tailwind temporarily disabled const progressEl = document.getElementById(`${sectionId}-progress`); if (progressEl) { const sectionModules = getModulesBySection(lessonEngine.modules, sectionId); diff --git a/src/helpers/router.js b/src/helpers/router.js index c6baece..d297791 100644 --- a/src/helpers/router.js +++ b/src/helpers/router.js @@ -27,7 +27,7 @@ export const RouteType = { /** * Valid section IDs */ -const SECTIONS = ["css", "html", "tailwind", "markdown"]; +const SECTIONS = ["css", "html", "markdown"]; // tailwind temporarily disabled /** * Valid language codes for URL-based switching diff --git a/src/index.html b/src/index.html index 42d8721..d159357 100644 --- a/src/index.html +++ b/src/index.html @@ -74,7 +74,7 @@ @@ -163,12 +163,14 @@

Semantic markup and native elements

+
MD

Markdown

@@ -474,7 +476,7 @@