Full Page

Signal & Noise

Signal & Noise is a communications firm for companies that do hard things. We place stories in outlets that matter and keep you out of the ones that don't. Our clients build rockets, write policy, run clinical trials, and trade energy. They need a comms partner who can understand the substance, not just spin the message. That's us.

Sectors

Deep Tech & Aerospace, Energy & Climate, Health & Biotech, Policy & Government Affairs, Financial Services

Press

Financial Times — 'The startup rewriting EU carbon markets', Wired — 'Inside the lab growing organs on chips', Bloomberg — 'Why this hedge fund is betting on lithium recycling', The Guardian — 'The quiet revolution in UK energy policy'

PR Agency

Sharp PR agency page with positioning, client logos, and press highlights.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
agency_name string
positioning text
sectors list<string>
press_hits list<string>
email email
website link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/pr-agency/apply
Content-Type: application/json

{
  "agency_name": "Signal & Noise",
  "positioning": "Signal & Noise is a communications firm for companies that do hard things. We place stories in outlets that matter and keep you out of the ones that don't.\n\nOur clients build rockets, write policy, run clinical trials, and trade energy. They need a comms partner who can understand the substance, not just spin the message. That's us.",
  "sectors": [
    "Deep Tech & Aerospace",
    "Energy & Climate",
    "Health & Biotech",
    "Policy & Government Affairs",
    "Financial Services"
  ],
  "press_hits": [
    "Financial Times — 'The startup rewriting EU carbon markets'",
    "Wired — 'Inside the lab growing organs on chips'",
    "Bloomberg — 'Why this hedge fund is betting on lithium recycling'",
    "The Guardian — 'The quiet revolution in UK energy policy'"
  ],
  "email": "[email protected]",
  "website": "https://example.com"
}

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 "PR Agency" 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: {{agency_name:string}}, {{positioning:text}}, {{sectors: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
{
  "agency_name": "string",
  "positioning": "text",
  "sectors": [
    "string"
  ],
  "press_hits": [
    "string"
  ],
  "email": "email",
  "website": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{agency_name:string}}` → string
- `{{positioning:text}}` → text
- `{{sectors:list<string>}}` → list<string>
- `{{press_hits:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{website:link}}` → link

Output ONLY the HTML code block. No explanation.