Full Page

Tomás Herrera

Mixing & Mastering — Analog + Digital Hybrid

I've been mixing records for fifteen years. Started on a Tascam 4-track, now work from a hybrid analog/digital studio in Madrid with a Neve Genesys and enough outboard to fill a van. I work across genres but specialize in records that need space, depth, and detail — the kind where you notice something new on the tenth listen. If you want your music louder, hire someone else. If you want it to sound right, let's talk.

Services

Stereo Mixing (analog summing), Stem Mastering, Dolby Atmos Mixing, Restoration & De-noise, Mix Consultation

Selected Clients

Rosalía — 'Motomami' (mix assist), Arca — 'Kick' series (mastering), Rodrigo Amarante — 'Drama' (mixing), C. Tangana — 'El Madrileño' (mix assist)

Sound Engineer

Technical sound engineer page with specializations, studio specs, and client list.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
engineer_name string
specialization string
about text
services list<string>
clients list<string>
email email
studio_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/sound-engineer/apply
Content-Type: application/json

{
  "engineer_name": "Tomás Herrera",
  "specialization": "Mixing & Mastering — Analog + Digital Hybrid",
  "about": "I've been mixing records for fifteen years. Started on a Tascam 4-track, now work from a hybrid analog/digital studio in Madrid with a Neve Genesys and enough outboard to fill a van.\n\nI work across genres but specialize in records that need space, depth, and detail — the kind where you notice something new on the tenth listen. If you want your music louder, hire someone else. If you want it to sound right, let's talk.",
  "services": [
    "Stereo Mixing (analog summing)",
    "Stem Mastering",
    "Dolby Atmos Mixing",
    "Restoration & De-noise",
    "Mix Consultation"
  ],
  "clients": [
    "Rosalía — 'Motomami' (mix assist)",
    "Arca — 'Kick' series (mastering)",
    "Rodrigo Amarante — 'Drama' (mixing)",
    "C. Tangana — 'El Madrileño' (mix assist)"
  ],
  "email": "[email protected]",
  "studio_url": "https://example.com/studio"
}

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 "Sound Engineer" 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: {{engineer_name:string}}, {{specialization: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
{
  "engineer_name": "string",
  "specialization": "string",
  "about": "text",
  "services": [
    "string"
  ],
  "clients": [
    "string"
  ],
  "email": "email",
  "studio_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{engineer_name:string}}` → string
- `{{specialization:string}}` → string
- `{{about:text}}` → text
- `{{services:list<string>}}` → list<string>
- `{{clients:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{studio_url:link}}` → link

Output ONLY the HTML code block. No explanation.