InformationWall¶
H5P equivalent
H5P Information Wall
When to use¶
Use InformationWall for searchable reference libraries — policy indexes, FAQ walls, or knowledge bases with many short panels.
Try it¶
Documentation demo
Use the Live demo, React, AI prompt, and Packaging / Manifest tabs below. Embedded demos disable telemetry, xAPI, and the LMS bridge. For production delivery, use the CLI template src/courseConfig.ts and LMS Go-Live.
<InformationWall
blockId="policy-wall"
panels={[
{ id: "phish", title: "Phishing", body: "Report via Report message." },
{ id: "mfa", title: "MFA", body: "Approve only prompts you initiated." },
{ id: "travel", title: "Travel", body: "Use corporate VPN on hotel Wi‑Fi." },
]}
/>
Copy into Cursor, Copilot, or ChatGPT after the vibe coding starter context:
Read lessonkit.json and src/App.tsx before editing.
Add a InformationWall block (H5P-style: Information Wall) like this example inside the active <Lesson>:
<InformationWall
blockId="policy-wall"
panels={[
{ id: "phish", title: "Phishing", body: "Report via Report message." },
{ id: "mfa", title: "MFA", body: "Approve only prompts you initiated." },
{ id: "travel", title: "Travel", body: "Use corporate VPN on hotel Wi‑Fi." },
]}
/>
Requirements:
- Import only from @lessonkit/react; use block types from block-catalog.v3.json.
- Keep existing courseId, lessonId, and navigation stable unless I ask to add a lesson.
- After edits, list changed files and what to verify in the browser (lessonkit dev).
Workflow tips: https://lessonkit.readthedocs.io/en/latest/guides/vibe-coding/prompting-and-workflows.html
See also¶
Accordion — collapsible sections without search