fix: timelined hero broken on home tile
Same shape as the apex fix: review and find stored a byte-identical hero.png, so Astro deduplicated them and the <Image>-rendered review detail emitted only webp variants — the home tile's <img src> still pointed at the original PNG URL Astro never wrote to disk. - Switch the review MDX from explicit <Image> to standard markdown image syntax (consistent with every other review) - Re-encode 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.CCPzFuPP.png (160 KB).
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 158 KiB After Width: | Height: | Size: 156 KiB |
@@ -10,12 +10,7 @@ source: "Brett Terpstra"
|
|||||||
fromFind: timelined
|
fromFind: timelined
|
||||||
---
|
---
|
||||||
|
|
||||||
import { Image } from 'astro:assets';
|

|
||||||
import hero from './hero.png';
|
|
||||||
|
|
||||||
<figure class="hero">
|
|
||||||
<Image src={hero} alt="Timelined's vertical timeline view on iPhone, with stacked dated events." />
|
|
||||||
</figure>
|
|
||||||
|
|
||||||
> A native iOS app that turns "when did this start?" into a question you can actually answer. Timelined is a general-purpose life-event timeline whose unsung killer use case is the personal medical history you wish you had been keeping all along.
|
> A native iOS app that turns "when did this start?" into a question you can actually answer. Timelined is a general-purpose life-event timeline whose unsung killer use case is the personal medical history you wish you had been keeping all along.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user