Full Page

FORMA

FORMA is a collective of architects, graphic designers, and filmmakers who believe the built environment should provoke, not pacify. We take on work that other studios won't: contested public spaces, experimental pavilions, identity systems for institutions that need to say something uncomfortable. We've been doing this since 2021, unfunded, from a warehouse in Lisbon.

Members

Ana Vaz — Architecture, Tomás Pereira — Graphic Identity, Mika Strand — Film & Spatial Video, Jules Otieno — Fabrication, Ren Takahashi — Research & Writing

Collaborations

Serpentine Pavilion 2025 (shortlist), Porto Design Biennale, Kunsthalle Wien — 'Unbuilt' exhibition, Storefront for Art & Architecture, NYC

Creative Collective

Bold, expressive collective page with mission statement, member list, and collaborations.

by DesignGenerate 0 stars 2 renders 0 forks

Schema

FieldType
collective_name string
mission text
members list<string>
collaborations list<string>
hero_image image
contact_email email
instagram link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/creative-collective/apply
Content-Type: application/json

{
  "collective_name": "FORMA",
  "mission": "FORMA is a collective of architects, graphic designers, and filmmakers who believe the built environment should provoke, not pacify.\n\nWe take on work that other studios won't: contested public spaces, experimental pavilions, identity systems for institutions that need to say something uncomfortable. We've been doing this since 2021, unfunded, from a warehouse in Lisbon.",
  "members": [
    "Ana Vaz — Architecture",
    "Tomás Pereira — Graphic Identity",
    "Mika Strand — Film & Spatial Video",
    "Jules Otieno — Fabrication",
    "Ren Takahashi — Research & Writing"
  ],
  "collaborations": [
    "Serpentine Pavilion 2025 (shortlist)",
    "Porto Design Biennale",
    "Kunsthalle Wien — 'Unbuilt' exhibition",
    "Storefront for Art & Architecture, NYC"
  ],
  "hero_image": "/images/defaults/hero-art.webp",
  "contact_email": "[email protected]",
  "instagram": "https://instagram.com/example"
}

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 "Creative Collective" 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: {{collective_name:string}}, {{mission:text}}, {{members: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
{
  "collective_name": "string",
  "mission": "text",
  "members": [
    "string"
  ],
  "collaborations": [
    "string"
  ],
  "hero_image": "image",
  "contact_email": "email",
  "instagram": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{collective_name:string}}` → string
- `{{mission:text}}` → text
- `{{members:list<string>}}` → list<string>
- `{{collaborations:list<string>}}` → list<string>
- `{{hero_image:image}}` → image
- `{{contact_email:email}}` → email
- `{{instagram:link}}` → link

Output ONLY the HTML code block. No explanation.