feat: add Playground module with full-height editor

This commit is contained in:
2025-12-31 00:36:14 +01:00
parent 13798f5e83
commit c0bb79da9f
5 changed files with 71 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ import htmlTablesEN from "../../lessons/30-html-tables.json";
import htmlMarqueeEN from "../../lessons/31-html-marquee.json";
import htmlSvgEN from "../../lessons/32-html-svg.json";
import flexboxEN from "../../lessons/flexbox.json";
import playgroundEN from "../../lessons/99-playground.json";
// German lesson imports
import welcomeDE from "../../lessons/de/00-welcome.json";
@@ -36,6 +37,7 @@ import htmlTablesDE from "../../lessons/de/30-html-tables.json";
import htmlMarqueeDE from "../../lessons/de/31-html-marquee.json";
import htmlSvgDE from "../../lessons/de/32-html-svg.json";
import flexboxDE from "../../lessons/de/flexbox.json";
import playgroundDE from "../../lessons/de/99-playground.json";
// English module store - ordered by learning path
const moduleStoreEN = [
@@ -60,7 +62,9 @@ const moduleStoreEN = [
flexboxEN,
responsiveEN,
// CSS Animationen
transitionsAnimationsEN
transitionsAnimationsEN,
// Playground
playgroundEN
];
// German module store - ordered by learning path
@@ -86,7 +90,9 @@ const moduleStoreDE = [
flexboxDE,
responsiveDE,
// CSS Animationen
transitionsAnimationsDE
transitionsAnimationsDE,
// Playground
playgroundDE
];
/**