mirror of
https://github.com/Egonex-AI/Understand-Anything.git
synced 2026-06-22 10:58:03 +08:00
The homepage Hero component referenced `/images/hero.png`, but the actual asset shipped at `homepage/public/images/hero.jpg`. As a result, https://understand-anything.com/images/hero.png returned HTTP 404 and the hero background failed to load. 修复:把 homepage/src/components/Hero.astro:7 的 /images/hero.png 改成 /images/hero.jpg,与仓库中实际存在的 homepage/public/images/hero.jpg 对齐,消除站点首页的 404。 Repro: curl -sI https://understand-anything.com/images/hero.png # HTTP/2 404 Root cause: homepage/src/components/Hero.astro:7 <img src="/images/hero.png" ... /> # file does not exist homepage/public/images/ hero.jpg (182179 bytes) # actual file shipped Fix: Single-line: .png -> .jpg in Hero.astro:7. Asset already published, no binary changes needed. After Pages rebuild, /images/hero.jpg resolves with HTTP 200.