Full Page

Scaffold

Six months. One mentor. Real career momentum.

Scaffold pairs mid-career professionals with senior leaders for structured, six-month mentorships. This is not coffee chats — it's goal-setting, accountability, and honest feedback from someone who's ten years ahead of you. We run two cohorts per year (January and July). Mentors are vetted, mentees are matched carefully, and both sides commit to biweekly sessions. Applications are competitive.

Tracks

Engineering Leadership, Product Management, Design & Creative Direction, Founder / Entrepreneurship, Career Transition (into Tech)

Mentors

Sarah Kim — VP Engineering, Stripe, Marcus Johnson — CPO, Figma, Dr. Aisha Bello — Design Director, Apple, Raj Patel — Founder, 3x exit, Elena Torres — Partner, Sequoia

Mentorship Program

Structured mentorship program page with tracks, mentors, and application.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
program_name string
tagline string
about text
tracks list<string>
mentors list<string>
email email
apply_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/mentorship-program/apply
Content-Type: application/json

{
  "program_name": "Scaffold",
  "tagline": "Six months. One mentor. Real career momentum.",
  "about": "Scaffold pairs mid-career professionals with senior leaders for structured, six-month mentorships. This is not coffee chats — it's goal-setting, accountability, and honest feedback from someone who's ten years ahead of you.\n\nWe run two cohorts per year (January and July). Mentors are vetted, mentees are matched carefully, and both sides commit to biweekly sessions. Applications are competitive.",
  "tracks": [
    "Engineering Leadership",
    "Product Management",
    "Design & Creative Direction",
    "Founder / Entrepreneurship",
    "Career Transition (into Tech)"
  ],
  "mentors": [
    "Sarah Kim — VP Engineering, Stripe",
    "Marcus Johnson — CPO, Figma",
    "Dr. Aisha Bello — Design Director, Apple",
    "Raj Patel — Founder, 3x exit",
    "Elena Torres — Partner, Sequoia"
  ],
  "email": "[email protected]",
  "apply_url": "https://example.com/apply"
}

AI Prompt

Copy this prompt to generate a compatible template with any LLM:

You are an expert frontend designer.
Create a beautiful, modern HTML template for "Mentorship Program" that strictly follows the constraints and schema below.

## Constraints
- Style everything using inline style="" attributes only (no external CSS, no <link>, no <style> tags)
- Do NOT use: <script>, <iframe>, <form>, <input>, <textarea>, <button>, <select>, <object>, <embed>, <details>, <dialog>
- Place data placeholders using this syntax: {{program_name:string}}, {{tagline:string}}, {{about:text}}
- The template must be a single HTML fragment (no <html>, <head>, or <body> tags)
- Use system fonts: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif (or Georgia, serif for editorial)

## JSON Schema
```json
{
  "program_name": "string",
  "tagline": "string",
  "about": "text",
  "tracks": [
    "string"
  ],
  "mentors": [
    "string"
  ],
  "email": "email",
  "apply_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{program_name:string}}` → string
- `{{tagline:string}}` → string
- `{{about:text}}` → text
- `{{tracks:list<string>}}` → list<string>
- `{{mentors:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{apply_url:link}}` → link

Output ONLY the HTML code block. No explanation.