Full Page

Lantern Films

Watch Reel →
Lantern Films produces documentary and branded content for clients who need more than a corporate video. We shoot on location, edit in-house, and deliver work that people actually watch. Based in London and Berlin, our team of eight has shot in 23 countries. We specialize in long-form branded documentaries, campaign films, and event coverage for the arts and technology sectors.

Services

Documentary Production, Brand Films & Campaign Content, Event Coverage & Live Direction, Post-Production & Color Grading, Motion Graphics & Animation

Selected Credits

Serpentine Gallery — Annual commission films 2022–2025, Spotify — 'Sound of the City' series, Porsche — Taycan launch film (Berlin), MUBI — Festival coverage (Venice, Cannes, TIFF), WeTransfer — 'Ideas Report' documentary

Media Production

Cinematic production company page with reel description, services, and credits.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
company_name string
intro text
services list<string>
credits list<string>
hero_image image
email email
reel_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/media-production/apply
Content-Type: application/json

{
  "company_name": "Lantern Films",
  "intro": "Lantern Films produces documentary and branded content for clients who need more than a corporate video. We shoot on location, edit in-house, and deliver work that people actually watch.\n\nBased in London and Berlin, our team of eight has shot in 23 countries. We specialize in long-form branded documentaries, campaign films, and event coverage for the arts and technology sectors.",
  "services": [
    "Documentary Production",
    "Brand Films & Campaign Content",
    "Event Coverage & Live Direction",
    "Post-Production & Color Grading",
    "Motion Graphics & Animation"
  ],
  "credits": [
    "Serpentine Gallery — Annual commission films 2022–2025",
    "Spotify — 'Sound of the City' series",
    "Porsche — Taycan launch film (Berlin)",
    "MUBI — Festival coverage (Venice, Cannes, TIFF)",
    "WeTransfer — 'Ideas Report' documentary"
  ],
  "hero_image": "/images/defaults/cover-event.webp",
  "email": "[email protected]",
  "reel_url": "https://example.com/reel"
}

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 "Media Production" 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: {{company_name:string}}, {{intro:text}}, {{services:list<string>}}
- 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
{
  "company_name": "string",
  "intro": "text",
  "services": [
    "string"
  ],
  "credits": [
    "string"
  ],
  "hero_image": "image",
  "email": "email",
  "reel_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{company_name:string}}` → string
- `{{intro:text}}` → text
- `{{services:list<string>}}` → list<string>
- `{{credits:list<string>}}` → list<string>
- `{{hero_image:image}}` → image
- `{{email:email}}` → email
- `{{reel_url:link}}` → link

Output ONLY the HTML code block. No explanation.