diff --git a/site/src/components/HomeHero.astro b/site/src/components/HomeHero.astro
index 9d3f683e..abffe3a9 100644
--- a/site/src/components/HomeHero.astro
+++ b/site/src/components/HomeHero.astro
@@ -35,7 +35,7 @@ import { starsLabel, echoVersion } from '../data/github.ts';
func main() {
e := echo.New()
e.GET("/", func(c *echo.Context) error {
- return c.JSON(200, echo.Map{"message": "Hello, World!"})
+ return c.JSON(200, map[string]string{"message": "Hello, World!"})
})
e.Start(":1323")
}