# Minimal Designer Resume

> A minimal, typography-led 1-column resume for designers. Generous whitespace, monochrome palette with a single accent color, numbered section labels, and repeating experience/education/skills sections.

This is a [Bannx](https://bannx.com) template. Render any of its **pages** to an image (PNG, SVG, WebP) or PDF through the Bannx Render API, and customize the output by passing **tweaks** (variable overrides).

## Template

- Template ID: `minimal-resume`
- Category: career
- Pages: 1
- Open in browser: https://bannx.com/templates/minimal-resume

## How to use

1. Pick a **page** below and note its **page ID**.
2. Call the Render API with that page ID. Override text, colors, and other values via the `tweaks` map (keys are the variable names listed below).
3. Authenticate with an API key (create one under **Settings → Space → Developers**) using the `Authorization: Bearer <token>` header. GET requests for this template require a token (or the space GET render secret `gt`).

Full docs: https://bannx.com/docs/rendering · https://bannx.com/docs/variables

## Quick demo (no API key)

AI agents and curious humans can render this **public** template with tweaks without an account. Mint a short-lived **demo token** (IP-throttled, ~1h TTL, max 5 per hour per IP) and pass it as `?demo=...` (or `Authorization: Bearer <token>`):

```bash
# 1. Mint a demo token (no auth required)
curl -s -X POST https://bannx.com/api/demo-token
# → { "token": "demo_…", "expiresAt": …, "quota": { … } }

# 2. Render with the token (public templates only)
curl -L "https://bannx.com/api/render/6a30238d82f3258e294cc10e?format=png&output=binary&demo=demo_…" --output demo.png
```

Demo tokens only work on public templates and don't consume any space's credits. For production usage, create an API key under **Settings → Space → Developers** instead.

## Variables

| Name | Type | Default | Description |
|------|------|---------|-------------|
| `accentColor` | string | `#c2410c` |  |
| `name` | string | `Mara Lindqvist` |  |
| `jobTitle` | string | `Brand & Visual Designer` |  |
| `email` | string | `hello@maralind.studio` |  |
| `phone` | string | `+1 (555) 408-1192` |  |
| `location` | string | `Copenhagen, DK` |  |
| `website` | string | `maralind.studio` |  |
| `summary` | string | `Multidisciplinary designer focused on brand systems, editorial layout, and typography. I believe in restraint — fewer elements, sharper intent — and in design that quietly does its job. 9 years working with studios and product teams across Europe.` |  |
| `experience` | array | `[{"role":"Lead Brand Designer","company":"Norrsken Studio","period":"2021 — Present","description":"Direct brand identity and design systems for early-stage product clients. Built a reusable component library that cut handoff time by 40%."},{"role":"Visual Designer","company":"Frame.io","period":"2018 — 2021","description":"Owned marketing visuals and editorial design across web and print. Shaped the typographic voice still used across the brand today."},{"role":"Junior Designer","company":"Freelance","period":"2015 — 2018","description":"Logo, layout, and identity work for 20+ independent clients in publishing, fashion, and hospitality."}]` |  |
| `education` | array | `[{"degree":"MA Graphic Design","school":"Royal Danish Academy","year":"2015"},{"degree":"BA Visual Communication","school":"Konstfack, Stockholm","year":"2013"}]` |  |
| `skills` | array | `[{"name":"Brand Identity"},{"name":"Typography"},{"name":"Editorial"},{"name":"Figma"},{"name":"Adobe CC"},{"name":"Art Direction"},{"name":"Design Systems"},{"name":"Prototyping"}]` |  |

## Pages

### Page 1

- Page ID: `6a30238d82f3258e294cc10e`
- Size: 794×1123

## Example: render "Page 1"

POST (recommended):

```bash
curl -X POST "https://bannx.com/api/render" -H "Content-Type: application/json" -H "Authorization: Bearer YOUR_API_KEY" --data "{\"templateId\":\"minimal-resume\",\"draft\":false,\"format\":\"png\",\"output\":\"binary\",\"tweaks\":{\"accentColor\":\"#c2410c\",\"name\":\"Mara Lindqvist\",\"jobTitle\":\"Brand & Visual Designer\"},\"pageId\":\"6a30238d82f3258e294cc10e\"}" -o render.png
```

GET (embed in an `<img>` / quick link):

```bash
curl -H "Authorization: Bearer YOUR_API_KEY" "https://bannx.com/api/render/6a30238d82f3258e294cc10e?format=png&output=binary&templateId=minimal-resume&tweaks=%7B%22accentColor%22%3A%22%23c2410c%22%2C%22name%22%3A%22Mara+Lindqvist%22%2C%22jobTitle%22%3A%22Brand+%26+Visual+Designer%22%7D" -o render.png
```
