Full Page

Talent

Verso

Representing creators who define taste.

Verso is a boutique talent agency representing photographers, art directors, and stylists working at the intersection of fashion, interiors, and editorial. We keep our roster deliberately small — eighteen artists — because meaningful representation requires attention, not volume. Every booking is a deliberate match between talent and project.

Roster

Leila Farzaneh — Photographer, Tomasz Walczak — Art Director, Naomi Xu — Stylist, Kira Engström — Set Designer, David Osei — Photographer, Marta Rossi — Creative Director

Specialties

Fashion & Beauty Editorial, Interior & Architecture Photography, Brand Campaign Art Direction, Set Design & Prop Styling, Motion & Film Direction

Talent Agency

Sleek talent representation page with roster highlights and booking info.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
agency_name string
tagline string
about text
roster list<string>
specialties list<string>
booking_email email
website link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/talent-agency/apply
Content-Type: application/json

{
  "agency_name": "Verso",
  "tagline": "Representing creators who define taste.",
  "about": "Verso is a boutique talent agency representing photographers, art directors, and stylists working at the intersection of fashion, interiors, and editorial.\n\nWe keep our roster deliberately small — eighteen artists — because meaningful representation requires attention, not volume. Every booking is a deliberate match between talent and project.",
  "roster": [
    "Leila Farzaneh — Photographer",
    "Tomasz Walczak — Art Director",
    "Naomi Xu — Stylist",
    "Kira Engström — Set Designer",
    "David Osei — Photographer",
    "Marta Rossi — Creative Director"
  ],
  "specialties": [
    "Fashion & Beauty Editorial",
    "Interior & Architecture Photography",
    "Brand Campaign Art Direction",
    "Set Design & Prop Styling",
    "Motion & Film Direction"
  ],
  "booking_email": "[email protected]",
  "website": "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 "Talent Agency" 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: {{agency_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
{
  "agency_name": "string",
  "tagline": "string",
  "about": "text",
  "roster": [
    "string"
  ],
  "specialties": [
    "string"
  ],
  "booking_email": "email",
  "website": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{agency_name:string}}` → string
- `{{tagline:string}}` → string
- `{{about:text}}` → text
- `{{roster:list<string>}}` → list<string>
- `{{specialties:list<string>}}` → list<string>
- `{{booking_email:email}}` → email
- `{{website:link}}` → link

Output ONLY the HTML code block. No explanation.