Full Page

Northpoint Advisory

Strategy for companies navigating complexity

We work with leadership teams facing decisions that don't fit in a spreadsheet. Market entry in regulated industries. Post-merger integration where cultures clash. Pricing strategy when your competitors don't play by the rules. Our method is simple: we start with what you actually know, map what you don't, and build a plan that survives contact with reality. No 200-slide decks. No jargon. Just clear thinking delivered on time.

Expertise

Market Entry Strategy, Post-Merger Integration, Pricing & Revenue Architecture, Regulatory Navigation, Executive Alignment

Credentials

McKinsey alumni (3 partners), 150+ engagements since 2017, Series B through IPO experience, Active in EU, UK, and APAC markets

Consulting Firm

Professional consulting page with expertise areas, approach, and credentials.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
firm_name string
headline string
approach text
expertise list<string>
credentials list<string>
email email
linkedin link

Apply Values

POST JSON to the API endpoint:

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

{
  "firm_name": "Northpoint Advisory",
  "headline": "Strategy for companies navigating complexity",
  "approach": "We work with leadership teams facing decisions that don't fit in a spreadsheet. Market entry in regulated industries. Post-merger integration where cultures clash. Pricing strategy when your competitors don't play by the rules.\n\nOur method is simple: we start with what you actually know, map what you don't, and build a plan that survives contact with reality. No 200-slide decks. No jargon. Just clear thinking delivered on time.",
  "expertise": [
    "Market Entry Strategy",
    "Post-Merger Integration",
    "Pricing & Revenue Architecture",
    "Regulatory Navigation",
    "Executive Alignment"
  ],
  "credentials": [
    "McKinsey alumni (3 partners)",
    "150+ engagements since 2017",
    "Series B through IPO experience",
    "Active in EU, UK, and APAC markets"
  ],
  "email": "[email protected]",
  "linkedin": "https://linkedin.com/company/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 "Consulting 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}}, {{headline:string}}, {{approach: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",
  "headline": "string",
  "approach": "text",
  "expertise": [
    "string"
  ],
  "credentials": [
    "string"
  ],
  "email": "email",
  "linkedin": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{firm_name:string}}` → string
- `{{headline:string}}` → string
- `{{approach:text}}` → text
- `{{expertise:list<string>}}` → list<string>
- `{{credentials:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{linkedin:link}}` → link

Output ONLY the HTML code block. No explanation.