Full Page

Calder & Hale

Commercial law. Clear counsel.

Calder & Hale advises growth-stage companies on the legal work that keeps them moving: fundraising, employment, IP, and cross-border structuring. We're not a hundred-lawyer firm with marble lobbies. We're twelve lawyers who answer emails the same day and explain things in plain language. Our clients stay with us because we treat their problems like our own.

Practice Areas

Venture Financing & Cap Tables, Employment Contracts & Policy, Intellectual Property & Licensing, Data Protection & Privacy, M&A and Exit Planning

Partners

Eleanor Calder — Corporate & M&A, Marcus Hale — IP & Technology, Yuna Sato — Employment & Compliance, Olivier Brandt — Cross-Border & Tax

Law Firm

Understated law firm page with practice areas, team, and consultation link.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
firm_name string
tagline string
about text
practice_areas list<string>
partners list<string>
email email
consultation_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/law-firm/apply
Content-Type: application/json

{
  "firm_name": "Calder & Hale",
  "tagline": "Commercial law. Clear counsel.",
  "about": "Calder & Hale advises growth-stage companies on the legal work that keeps them moving: fundraising, employment, IP, and cross-border structuring.\n\nWe're not a hundred-lawyer firm with marble lobbies. We're twelve lawyers who answer emails the same day and explain things in plain language. Our clients stay with us because we treat their problems like our own.",
  "partners": [
    "Eleanor Calder — Corporate & M&A",
    "Marcus Hale — IP & Technology",
    "Yuna Sato — Employment & Compliance",
    "Olivier Brandt — Cross-Border & Tax"
  ],
  "practice_areas": [
    "Venture Financing & Cap Tables",
    "Employment Contracts & Policy",
    "Intellectual Property & Licensing",
    "Data Protection & Privacy",
    "M&A and Exit Planning"
  ],
  "email": "[email protected]",
  "consultation_url": "https://example.com/book"
}

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 "Law Firm" 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: {{firm_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
{
  "firm_name": "string",
  "tagline": "string",
  "about": "text",
  "practice_areas": [
    "string"
  ],
  "partners": [
    "string"
  ],
  "email": "email",
  "consultation_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{firm_name:string}}` → string
- `{{tagline:string}}` → string
- `{{about:text}}` → text
- `{{practice_areas:list<string>}}` → list<string>
- `{{partners:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{consultation_url:link}}` → link

Output ONLY the HTML code block. No explanation.