fix: apex hero broken on home tile

The review and find both stored a byte-identical hero.png, so Astro
deduplicated them to a single asset; the <Image>-rendered review
detail emitted only webp variants and the home tile's <img src> still
pointed at the original PNG URL — which Astro never wrote to disk.

- Switch the review MDX from explicit <Image> to standard markdown
  image syntax (consistent with every other review)
- Re-save the review's hero.png so its bytes differ from the find's
  copy, giving it its own asset hash with the original PNG emitted

Build clean; home tile resolves to /_astro/hero.Ckihos5I.png (680 KB).
This commit is contained in:
2026-05-04 19:12:45 -04:00
parent 7e1b200bea
commit 6c42d0c380
2 changed files with 1 additions and 4 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 495 KiB

After

Width:  |  Height:  |  Size: 664 KiB

@@ -10,10 +10,7 @@ source: "Brett Terpstra"
fromFind: "apex-markdown-processor"
---
import hero from './hero.png';
import { Image } from 'astro:assets';
<Image src={hero} alt="Apex rendering a Markdown document with inline images in iTerm" />
![Apex rendering a Markdown document with inline images in iTerm](./hero.png)
*Apex piped through `cat`-and-render: tables, citations, and inline screenshots all visible at the command line.*