{{producer_name:string}}

{{tagline:string}}

{{bio:text}}

Credits

{{credits:list}}

Gear

{{gear:list}}

Music Producer

Producer portfolio with credits, gear list, and rates.

by Anonymous 0 stars 0 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-mqr23l06/apply
Content-Type: application/json

{
  "producer_name": "Your value here",
  "tagline": "Your value here",
  "bio": "Your value here",
  "credits": [
    "example"
  ],
  "gear": [
    "example"
  ],
  "email": "[email protected]",
  "rates_url": "https://example.com"
}

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.