Skip to main content

Overview

The Infographic generator transforms complex podcast insights into visual diagrams perfect for LinkedIn, Twitter, and Instagram. The AI analyzes your content and selects optimal layouts, templates, and color systems to communicate ideas effectively.

Design Types

Infographics

Data visualizations, frameworks, and concept diagrams for explaining complex ideas, processes, or methodologies

Quote Cards

Memorable quotes and insights transformed into bold, shareable typographic visuals

Getting Started

1

Access Design Studio

Navigate to an episode’s Assets tab and click Design Studio, or right-click text in any editor and select “Create Visual”.
2

Enter Content

Paste the text, framework, or quote you want to visualize. You can select text from collapsible panels (Transcript, PRF, Hooks) and copy it to your prompt.
3

Configure Options

Select aspect ratio (16:9 for LinkedIn, 1:1 for Instagram) and resolution (2K recommended).
4

Generate Spec

Click Generate Spec to let AI analyze your content and propose a complete design specification.
5

Generate Image

Review the spec (edit the prompt if needed) and click Generate Image to create your visual.

AI Specification Generator

The AI analyzes your content using episode context to generate a complete design specification.

Input Data

// src/hooks/useGeneration.ts
export interface EpisodeContext {
  episodeNumber: string
  guestName: string
  transcript: string
  prf?: string
  hooks?: string
}

const spec = await generateInfographicSpec(
  selectedText,      // Your content
  transcriptText,    // Full transcript for context
  prfText,          // PRF for insights
  episodeNumber,
  guestName,
  generatedHistory, // Past designs for variety
  designType        // 'infographic' | 'quote'
)

Output Specification

interface InfographicSpec {
  layout: string           // e.g., "Hub & Spoke", "Pyramid", "Split Screen"
  template: string         // e.g., "Strategic Framework", "Data Story"
  title: string           // Main headline (under 10 words)
  colorSystem: string     // e.g., "ybh_gradient", "blueprint_dark"
  iconStyle: 'isometric' | 'flat2d'
  aspectRatio: string     // e.g., "16:9", "1:1"
  prompt: string          // Complete Nano Banana Pro prompt
}
The AI prompt is fully editable before image generation. Customize colors, add specific elements, or adjust the composition to match your vision.

Infographic Design Database

AI selects from a curated design database stored in Pinecone for semantic retrieval.

Layout Structures (28 Types)

Circular & Cyclical

Ideal for processes, cycles, and continuous workflows.

Doom Loop

Vicious cycles, organizational traps, negative feedback loops

Continuous Process Circle

Ongoing workflows, iterative processes

Concentric Circles

Layered priorities, nested concepts, target models

Hub & Spoke

Central idea with connected elements, ecosystem diagrams

Linear & Sequential

Perfect for step-by-step processes, timelines, and progressions.

Horizontal Stage Journey

Multi-stage processes, transformation journeys

Vertical Timeline

Historical progression, career paths

Stepped Staircase

Progressive achievement, maturity models

Snake/Zigzag Path

Non-linear journeys, complex paths

Pipeline/Funnel

Conversion processes, filtering stages

Comparison

Great for evaluating options, showing contrasts, or presenting spectrums.

Split Screen

Before/after, this vs. that, two perspectives

Quadrant Matrix

2×2 decision frameworks (Eisenhower, BCG Matrix)

Multi-Column Comparison

Feature comparison, vendor evaluation

Spectrum/Scale

Ranges, gradients, intensity levels

Hierarchical

Excellent for organizational structures, priorities, and dependencies.

Pyramid (Bottom-Up)

Foundation-first models, Maslow’s hierarchy

Inverted Pyramid

Priority models, decision trees

Tree/Branching

Decision trees, organizational charts

Pillars/Columns

Supporting elements, multi-pillar strategies

Grid & Network

Ideal for showing relationships, dashboards, and interconnected systems.

Card Grid

Feature sets, capability maps, skill matrices

Dashboard Panels

KPI displays, metrics overviews

Node Network

Connected systems, relationship maps

Workflow with Decision Points

Complex processes with conditional logic

Content Templates (10 Types)

AI matches your content to one of these proven templates:
TemplateBest ForExample Use Cases
A: Doom Loop / Problem CycleVicious cycles, organizational trapsTech debt spiral, vendor lock-in cycle, meeting overload
B: Strategic FrameworkMethodologies, governance modelsIT governance framework, DevOps principles, cloud adoption model
C: Journey MapTransformation stories, career progressionsDigital transformation journey, cloud migration path
D: Reality CheckVendor promises vs. reality, myth-busting”What vendors say” vs. “What really happens”
E: Data StoryResearch findings, statistics”73% of IT leaders report…” with visual breakdown
F: Comparison MatrixTool selection, vendor evaluationAWS vs. Azure vs. GCP feature comparison
G: Workflow OptimizationProcess improvement, automationBefore/after automation workflows
H: Leadership PlaybookBest practices, communication strategies5 principles of effective IT leadership
I: Communication SinsPitfalls, anti-patternsCommon mistakes in stakeholder management
J: System ArchitectureTech stacks, infrastructureModern data platform architecture
The AI considers both content semantics and episode context when selecting templates. A framework mentioned in passing might become a Strategic Framework, while a recurring problem could become a Doom Loop.

Quote Cards

Quote cards use a specialized typographic blueprint style optimized for social sharing.

Design Characteristics

  • Aspect Ratio: 1:1 (Square) for Instagram, LinkedIn
  • Color System: Blueprint Dark (#0F2A44 background)
  • Typography: Bold, condensed sans-serif with orange (#F17529) highlights
  • Style: Flat 2D, no glow, no 3D effects
  • Focus: Quote as sole focal point

Quote Card Prompt Template

// From DesignStudioPage.tsx:131-141
const quotePrompt = `1:1 square format quote card in flat 2D typographic blueprint style. 
Blue-Dark mode background (#0F2A44) with optional subtle alternate band (#123455).

The quote text reads: "${sourceText}" displayed in bold, condensed sans-serif.
Text color is white (#FFFFFF) with key impactful words highlighted in orange (#F17529).
The quote is broken into multiple lines for rhythm and readability.

Below the quote, attribution reads "— ${guestName}" in light gray (#B8C7D6).

Footer: "Subscribe and share with your peers" (orange), "Episode ${episodeNum}" (gray),
"We don't sell. We unsell." (gray).

NO logo in the design.`
Logo is added post-generation using the Logo Compositor to maintain flexibility in logo placement and size.

Infographic Prompt Engineering

AI generates different prompts based on visual type:

Cinematic Style (Default for Infographics)

// Blueprint framework style with isometric elements
const cinematicPrompt = `16:9 landscape infographic in flat 2D blueprint framework style.
Blue-Dark mode background (#0F2A44) with header bar (#123455).

Title "${title}" in bold white condensed sans-serif at the top, 
with key words highlighted in orange (#F17529). No 3D. No glow. No rim lighting.

Content based on: ${sourceText}

Footer: "Subscribe and share with your peers" (orange), 
"Episode ${episodeNum}" (gray), "When IT leaders rise... so does everything else." (gray).

NO logo in the design.`

Data Visualization Style

// Editorial style for data-heavy content
const datavizPrompt = `16:9 landscape infographic with light gray background (#F5F5F5).
Title "${title}" in bold dark text (#333333) at the top.

Professional data visualization with white content panels (#FFFFFF), 
clean editorial style. Orange (#F17529) accent for key data points.

Content based on: ${sourceText}

Footer: "Subscribe and share with your peers" (orange), 
"Episode ${episodeNum}" (gray), "Real IT leaders. Real talk." (gray).

NO logo in the design.`
The AI automatically selects between cinematic (dark, framework-focused) and dataviz (light, data-focused) styles based on content analysis.

Generation History & Variety

AI tracks generation history to ensure visual diversity across an episode’s assets.

History Tracking

// From DesignStudioPage.tsx:254-259
const generatedHistory = episode?.generatedAssets?.map(a => {
  const spec = a.spec
  if (!spec) return null
  return `${spec.template || 'unknown'}|${spec.layout || 'unknown'}|${spec.colorSystem || 'unknown'}`
}).filter(Boolean) as string[] || []

Variety Algorithm

  1. First Asset: AI has full creative freedom
  2. Subsequent Assets: AI avoids repeating template+layout+colorSystem combinations
  3. After 5+ Assets: AI prioritizes least-used templates
If you need to regenerate with the same style, you can manually edit the spec prompt before generating the image.

Color System Reference

AI selects from these predefined color systems:

1. YBH Gradient (Primary)

--ybh-yellow: #F7B500
--ybh-orange: #F17529
--ybh-red: #EF4136
Best for: Brand-forward content, announcements, highlights

2. Blueprint Dark (Cinematic)

--bg-primary: #0F2A44
--bg-secondary: #123455
--text-primary: #FFFFFF
--accent: #F17529
Best for: Frameworks, technical diagrams, quote cards

3. Blueprint Light (Editorial)

--bg-primary: #F5F5F5
--text-primary: #333333
--content-panel: #FFFFFF
--accent: #F17529
Best for: Data visualizations, statistics, research findings

4. Problem/Solution

--problem: #EF4136#F17529 (red to orange)
--solution: #27AE60#3498DB (green to blue)
Best for: Before/after, problem/solution, transformation journeys

5. Corporate Professional

--primary: #16213E (navy)
--secondary: #0F3460 (teal)
--accent: #F17529 (orange)
Best for: Enterprise content, professional frameworks, leadership topics

Editing Generated Images

After generation, you can refine images using Nano Banana Pro’s transformation feature.

Transformation Workflow

// src/services/kieai.ts
await createTask({
  prompt: "Adjust colors to be more vibrant",
  imageInput: [generatedImageUrl],  // Up to 8 reference images
  aspectRatio: '16:9',
  resolution: '2K'
})
1

Download Original

Click the download icon on the generated image
2

Describe Changes

Write a prompt describing modifications: “Make text larger”, “Change background to light gray”, “Add more contrast”
3

Upload as Reference

Future update will support direct transformation in UI
Image transformation is currently done via API directly. UI support for transformations is planned for a future release.

Best Practices

Be Specific

Include key terms, numbers, and frameworks in your input text. AI performs semantic analysis on your content.

Use Episode Context

Always link an episode when possible. AI uses transcript and PRF for richer context and better layouts.

Edit the Prompt

Review and customize the AI-generated prompt before image creation. Add specific visual elements or adjust colors.

Check History

Review the History panel to see what’s already been created and avoid repetitive designs.

Common Use Cases

Framework Visualization

Input: “The ITSM maturity model has 5 levels: Ad Hoc, Repeatable, Defined, Managed, and Optimized.” AI Selection:
  • Layout: Stepped Staircase
  • Template: Strategic Framework
  • Color: Corporate Professional
  • Icon Style: Isometric

Data Story

Input: “Our research found that 73% of IT leaders struggle with vendor management, 68% report budget overruns, and 54% face technical debt challenges.” AI Selection:
  • Layout: Card Grid or Dashboard Panels
  • Template: Data Story
  • Color: Blueprint Light
  • Icon Style: Flat 2D

Problem Cycle

Input: “Tech debt leads to slower delivery, which leads to pressure to cut corners, which creates more tech debt.” AI Selection:
  • Layout: Doom Loop
  • Template: Problem Cycle
  • Color: Problem/Solution (red progression)
  • Icon Style: Isometric

Next Steps

YouTube Thumbnails

Learn about thumbnail generation for video content

Career Timelines

Create guest career journey visualizations

Build docs developers (and LLMs) love