Wenodify

Examples

Visual content you can build today.

Sample idea maps, whiteboards, conversations, quizzes, and family trees — including the kinds of Kifuliiru conversations and questions Studio was built to author. Preview visuals and export-ready JSON you can import.

Conversation idea map example in Wenodify
Idea Map · conversation

Guided language dialog

A Kifuliiru-style conversation mind map: root prompt with reply branches — the kind of language content Wenodify was built to author, then export.

{
  "app": "wenodify-studio",
  "mode": "idea-map",
  "version": 1,
  "graphType": "conversation",
  "nodes": [
    {
      "id": "root",
      "position": { "x": 80, "y": 180 },
      "data": {
        "title": "How do I greet someone in Kifuliiru?",
        "body": "",
        "status": "active"
      }
    },
    {
      "id": "option-a",
      "position": { "x": 430, "y": 80 },
      "data": {
        "title": "Formal greeting",
        "body": "Use the respectful form taught in lesson 1.",
        "status": "active"
      }
    }
  ],
  "edges": [
    { "id": "root-option-a", "source": "root", "target": "option-a" }
  ]
}
Open in Studio
Lesson steps idea map example in Wenodify
Idea Map · steps

Procedure in ordered steps

A lesson-steps concept map. Sibling order defines sequence. Each step label is the title; body holds instructions.

{
  "graphType": "steps",
  "nodes": [
    { "id": "1", "data": { "title": "Gather materials", "body": "..." } },
    { "id": "2", "data": { "title": "Prepare the surface", "body": "..." } }
  ]
}
Open in Studio
Idea Pad whiteboard example in Wenodify
Idea Pad · whiteboard

Loose scene board

A freeform Idea Pad: sticky cards, optional ink, and an arrow between two thoughts. Import as wenodify-idea-pad.json.

{
  "app": "wenodify-studio",
  "mode": "idea-pad",
  "version": 1,
  "cards": [
    { "id": 1, "x": 2800, "y": 2850, "color": "#F0DFA3", "text": "Opening scene", "tilt": -2 },
    { "id": 2, "x": 3120, "y": 2920, "color": "#C9DCC6", "text": "Character beat", "tilt": 1.5 }
  ],
  "strokes": [],
  "connections": [{ "id": 1, "from": 1, "to": 2 }]
}
Open in Studio
Two-generation family tree example in Wenodify
Family Tree · genealogy

Two-generation family tree

A small family tree maker sample: partners, children, and optional dates. Export JSON, SQL, or PNG when the tree is ready.

{
  "app": "wenodify-studio",
  "mode": "family-tree",
  "version": 1,
  "nodes": [
    {
      "id": "person-1",
      "label": "Ada Lovelace",
      "birthYear": "1815",
      "deathYear": "1852"
    },
    {
      "id": "person-2",
      "label": "Lord Byron",
      "birthYear": "1788",
      "deathYear": "1824"
    }
  ],
  "partnerships": [
    { "id": "pair-1", "members": ["person-1", "person-2"] }
  ]
}
Open in Studio
Topic explorer idea map example in Wenodify
Idea Map · explorer

Browse-by-topic tree

A browse-by-topic concept map. Wide branching for Kifuliiru cultural topics — entries in labels, summaries in body text.

{
  "graphType": "explorer",
  "nodes": [
    { "id": "root", "data": { "title": "Traditional foods", "body": "Overview" } },
    { "id": "child", "data": { "title": "Harvest dishes", "body": "Seasonal recipes" } }
  ]
}
Open in Studio

Using these samples

Copy JSON into a .jsonfile and import it from Studio's toolbar — the same way you would reopen a mind map, whiteboard, or family tree you exported earlier. Full downloadable templates will live here once we publish curated starter files. Until then, see docs for export structure, mind map types, Idea Pad JSON, and genealogy templates.