Skip to content

Commit 5f7890a

Browse files
committed
chore: use image zoom and update title
1 parent c790e8d commit 5f7890a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

apps/www/content/blog/unkey-flow.mdx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
date: 2025-11-25
3-
title: "Why and how we rolled our own flow editor"
3+
title: "Building a flow editor"
44
image: "/images/blog-images/ai-logs/og-image.png"
5-
description: "Why and how we hand rolled our own flow editor for our upcoming network tab for upcoming Unkey deploy"
5+
description: "Building a flow editor for our upcoming network tab for upcoming Unkey deploy"
66
author: oz
77
tags: ["engineering"]
88
---
@@ -435,9 +435,11 @@ And that's it. The engine spits out positioned nodes and connection paths.
435435

436436
Once we have the waypoint paths, we need to actually draw them. First, let us show you how the raw waypoints look and you'll understand why we built something better.
437437

438-
<Image
438+
<ImageZoom
439439
src="/images/blog-images/unkey-flow/raw-waypoints.png"
440440
alt="raw-waypoints"
441+
width="1920"
442+
height="1080"
441443
/>
442444

443445
See the red dots? Each one is a waypoint calculated by the layout engine.
@@ -458,9 +460,11 @@ For animation, we use SVG's `stroke-dasharray` and animate `stroke-dashoffset`.
458460

459461
```
460462

461-
<Image
463+
<ImageZoom
462464
src="/images/blog-images/unkey-flow/animated-and-styled-waypoints.png"
463465
alt="styled-waypoints"
466+
width="1920"
467+
height="1080"
464468
/>
465469

466470
## What We Shipped

0 commit comments

Comments
 (0)