Full Page

Marca

A brand is not a logo. It is the feeling a person carries after every encounter with your company — the weight of your envelope, the cadence of your emails, the silence between your words. Marca builds identity systems that hold across decades and formats. We work slowly, intentionally, and only with clients who understand that lasting brands are not designed in a sprint.

Services

Brand Strategy & Positioning, Visual Identity Systems, Verbal Identity & Tone of Voice, Packaging & Material Design, Brand Guidelines & Governance

Notable Work

Aesop Japan — Regional identity adaptation, Vitra Campus — Wayfinding system, Wallpaper* Magazine — 2024 redesign, Hay — Product packaging system

Branding House

Elegant brand identity studio page with philosophy, services, and notable work.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
studio_name string
philosophy text
services list<string>
notable_work list<string>
email email
hero_image image

Apply Values

POST JSON to the API endpoint:

POST /api/templates/branding-house/apply
Content-Type: application/json

{
  "studio_name": "Marca",
  "philosophy": "A brand is not a logo. It is the feeling a person carries after every encounter with your company — the weight of your envelope, the cadence of your emails, the silence between your words.\n\nMarca builds identity systems that hold across decades and formats. We work slowly, intentionally, and only with clients who understand that lasting brands are not designed in a sprint.",
  "services": [
    "Brand Strategy & Positioning",
    "Visual Identity Systems",
    "Verbal Identity & Tone of Voice",
    "Packaging & Material Design",
    "Brand Guidelines & Governance"
  ],
  "notable_work": [
    "Aesop Japan — Regional identity adaptation",
    "Vitra Campus — Wayfinding system",
    "Wallpaper* Magazine — 2024 redesign",
    "Hay — Product packaging system"
  ],
  "email": "[email protected]",
  "hero_image": "/images/defaults/hero-product.webp"
}

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 "Branding House" 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: {{studio_name:string}}, {{philosophy: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
{
  "studio_name": "string",
  "philosophy": "text",
  "services": [
    "string"
  ],
  "notable_work": [
    "string"
  ],
  "email": "email",
  "hero_image": "image"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{studio_name:string}}` → string
- `{{philosophy:text}}` → text
- `{{services:list<string>}}` → list<string>
- `{{notable_work:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{hero_image:image}}` → image

Output ONLY the HTML code block. No explanation.