Full Page

Deepfield

Curated listening for focused minds.

Deepfield curates playlists for people who use music as a tool — for deep work, for long drives, for the 3am session when the deadline is tomorrow. 600K+ followers across platforms. We listen to every submission. If it fits a playlist, we add it. No payola, no playlist placement fees.

Active Playlists

Deep Focus — 48hrs of ambient and minimal (320K followers), Night Drive — Downtempo electronica for the road (180K followers), Studio Hours — Lo-fi, jazz, and texture (95K followers), Sunday Papers — Acoustic and chamber music (52K followers)

Submission Guidelines

Send unreleased or recently released tracks only, Include artist name, track title, and release date, One track per submission, no EPs or albums, Response within 14 days if selected

Playlist Curator

Minimal curator page with active playlists, submission guidelines, and links.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
curator_name string
tagline string
about text
playlists list<string>
guidelines list<string>
submission_email email
profile_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/playlist-curator/apply
Content-Type: application/json

{
  "curator_name": "Deepfield",
  "tagline": "Curated listening for focused minds.",
  "about": "Deepfield curates playlists for people who use music as a tool — for deep work, for long drives, for the 3am session when the deadline is tomorrow.\n\n600K+ followers across platforms. We listen to every submission. If it fits a playlist, we add it. No payola, no playlist placement fees.",
  "playlists": [
    "Deep Focus — 48hrs of ambient and minimal (320K followers)",
    "Night Drive — Downtempo electronica for the road (180K followers)",
    "Studio Hours — Lo-fi, jazz, and texture (95K followers)",
    "Sunday Papers — Acoustic and chamber music (52K followers)"
  ],
  "guidelines": [
    "Send unreleased or recently released tracks only",
    "Include artist name, track title, and release date",
    "One track per submission, no EPs or albums",
    "Response within 14 days if selected"
  ],
  "submission_email": "[email protected]",
  "profile_url": "https://example.com/deepfield"
}

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 "Playlist Curator" 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: {{curator_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
{
  "curator_name": "string",
  "tagline": "string",
  "about": "text",
  "playlists": [
    "string"
  ],
  "guidelines": [
    "string"
  ],
  "submission_email": "email",
  "profile_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{curator_name:string}}` → string
- `{{tagline:string}}` → string
- `{{about:text}}` → text
- `{{playlists:list<string>}}` → list<string>
- `{{guidelines:list<string>}}` → list<string>
- `{{submission_email:email}}` → email
- `{{profile_url:link}}` → link

Output ONLY the HTML code block. No explanation.