Full Page

Zephyr

Production. Mixing. Sound design.

Zephyr has been producing music for twelve years. Started in a bedroom in Lagos, now works from a purpose-built studio in East London. Credits span hip-hop, electronic, and film scoring. Approach: every project gets treated like a one-off. No templates, no presets from a pack. If you want something that sounds like everything else, find someone else.

Credits

Little Simz — 'Sometimes I Might Be Introvert' (additional production), Sault — 'Untitled (Rise)' (mixing), Skepta — '5ive' campaign (sound design), Riz Ahmed — 'The Long Goodbye' (score)

Gear

SSL 4000G Console, Neve 1073 Preamps, ATC SCM25A Monitors, Eurorack Modular (12U), Ableton Live / Pro Tools

Music Producer

Producer portfolio with credits, gear list, and rates.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
producer_name string
tagline string
bio text
credits list<string>
gear list<string>
email email
rates_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/music-producer/apply
Content-Type: application/json

{
  "producer_name": "Zephyr",
  "tagline": "Production. Mixing. Sound design.",
  "bio": "Zephyr has been producing music for twelve years. Started in a bedroom in Lagos, now works from a purpose-built studio in East London. Credits span hip-hop, electronic, and film scoring.\n\nApproach: every project gets treated like a one-off. No templates, no presets from a pack. If you want something that sounds like everything else, find someone else.",
  "credits": [
    "Little Simz — 'Sometimes I Might Be Introvert' (additional production)",
    "Sault — 'Untitled (Rise)' (mixing)",
    "Skepta — '5ive' campaign (sound design)",
    "Riz Ahmed — 'The Long Goodbye' (score)"
  ],
  "gear": [
    "SSL 4000G Console",
    "Neve 1073 Preamps",
    "ATC SCM25A Monitors",
    "Eurorack Modular (12U)",
    "Ableton Live / Pro Tools"
  ],
  "email": "[email protected]",
  "rates_url": "https://example.com/rates"
}

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 "Music Producer" 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: {{producer_name:string}}, {{tagline:string}}, {{bio: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
{
  "producer_name": "string",
  "tagline": "string",
  "bio": "text",
  "credits": [
    "string"
  ],
  "gear": [
    "string"
  ],
  "email": "email",
  "rates_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{producer_name:string}}` → string
- `{{tagline:string}}` → string
- `{{bio:text}}` → text
- `{{credits:list<string>}}` → list<string>
- `{{gear:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{rates_url:link}}` → link

Output ONLY the HTML code block. No explanation.