Pages
Cover
Hero block
Features
Pricing
Ship faster.
From idea to launch in a week.
Start free
Inspect
color: #f9e6d4
color: #f9c590
btn opacity 55%
01 / CONTRAST
Hero title against the gradient is 2.1:1. Push the title to ink and you’ll clear WCAG AA.
02 / CTA
“Start free” button is at 55% opacity. Primary CTAs should be fully opaque.
03 / NAMING
Hero frame is still named “Frame 17.” Want me to rename it to “hero-block”?
| A | B Vendor | C MRR | D Renewal | E Notes |
| 1 | Datadog | $4,820 | 2026-08-14 | SOC 2 |
| 2 | Honeycomb | $2,140 | 2026-06-02 | 2024-06-02 |
| 3 | New Relic | $3,560 | 2026-09-10 | SOC 2 |
| 4 | Splunk | $48.200 | 2026-07-22 | quoted |
| 5 | Sentry | $640 | 2026-04-30 | SOC 2 |
01 / TYPO
D2 reads “2024-06-02”. Almost certainly meant 2026, same year as the rows around it.
02 / FORMAT
C4 uses a period as a decimal separator. Sheets is parsing it as text.
03 / SUM
Total MRR on this view is $11,160 once C4 is fixed. Want me to add the formula?
To: marcus@board.vcDraft · 14:02
Q1 update · revenue, hiring, the path to launch
Hey Marcus,
We had a great quarter. ARR up 38% QoQ and we shipped the v2 cognitive stack. Two senior hires landed: head of design from Linear, staff infra from Stripe.
The one thing we’re still working through is the on-call rotation. We had 3 incidents this quarter and our MTTR isn’t where I want it to be.
Let me know if you want to grab time next week to walk through the road map.
Best,
Anita
01 / TONE
Subject mixes celebration and concern. Lead with what they want to know first.
02 / NUMBER
H-MEM has Q1 ARR growth at 42%, not 38%. Want me to swap it?
03 / FOLLOW-UP
You agreed at last board meeting to give MTTR a target. Add one before sending?
14async function fetchPlan(goal) {
15 const res = await fetch('/api/plan', {
16 method: 'POST',
17 body: goal // raw object, not stringified
18 });
19 return res.json();
20}
21
22// usage
23fetchPlan({ prompt: 'enrich leads' });
01 / BUG
Line 17: body is the raw goal object. Server expects JSON, so wrap with JSON.stringify.
02 / HEADERS
No Content-Type header on the fetch. Production handler will return 415.
03 / TEST
No test covers this path. Want me to scaffold one in /tests?