Full Page

Compound

Compound builds companies at the intersection of infrastructure software and climate. We don't invest in startups — we co-found them. Our model: identify a structural gap in the energy, logistics, or materials supply chain, recruit a founding team from our network, fund the first 18 months, and provide engineering support from our in-house build team. Three of our six companies have raised Series A.

Portfolio

Gridware — Predictive maintenance for power grids, Terralith — Carbon accounting for heavy industry, Freightline — Route optimization for electric fleets, Substrata — Bio-based construction materials, Cuvée — Water quality monitoring at scale, Helix — Battery lifecycle management

Team

Nadia Okafor — Managing Partner, Erik Lindqvist — Partner, Engineering, Rosa Chen — Partner, Operations, Jamal Adeyemi — EIR, Climate

Venture Studio

Bold venture studio page with thesis, portfolio companies, and team.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
studio_name string
thesis text
portfolio list<string>
team list<string>
email email
apply_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/venture-studio/apply
Content-Type: application/json

{
  "studio_name": "Compound",
  "thesis": "Compound builds companies at the intersection of infrastructure software and climate. We don't invest in startups — we co-found them.\n\nOur model: identify a structural gap in the energy, logistics, or materials supply chain, recruit a founding team from our network, fund the first 18 months, and provide engineering support from our in-house build team. Three of our six companies have raised Series A.",
  "portfolio": [
    "Gridware — Predictive maintenance for power grids",
    "Terralith — Carbon accounting for heavy industry",
    "Freightline — Route optimization for electric fleets",
    "Substrata — Bio-based construction materials",
    "Cuvée — Water quality monitoring at scale",
    "Helix — Battery lifecycle management"
  ],
  "team": [
    "Nadia Okafor — Managing Partner",
    "Erik Lindqvist — Partner, Engineering",
    "Rosa Chen — Partner, Operations",
    "Jamal Adeyemi — EIR, Climate"
  ],
  "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 "Venture Studio" 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: {{studio_name:string}}, {{thesis:text}}, {{portfolio:list<string>}}
- 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
{
  "studio_name": "string",
  "thesis": "text",
  "portfolio": [
    "string"
  ],
  "team": [
    "string"
  ],
  "email": "email",
  "apply_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{studio_name:string}}` → string
- `{{thesis:text}}` → text
- `{{portfolio:list<string>}}` → list<string>
- `{{team:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{apply_url:link}}` → link

Output ONLY the HTML code block. No explanation.