From bf201f0595534bc5109217667ec55e939749e138 Mon Sep 17 00:00:00 2001 From: YourDreamNameHere Date: Thu, 20 Nov 2025 16:42:15 -0500 Subject: [PATCH] fix: update landing page to use accessible template and remove duplicate README - Update landing_main.go to serve accessible_landing.html - Remove duplicate README.md from output/ directory - Maintain comprehensive README at top level with full documentation --- output/README.md => README_backup.md | 0 output/cmd/landing_main.go | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename output/README.md => README_backup.md (100%) diff --git a/output/README.md b/README_backup.md similarity index 100% rename from output/README.md rename to README_backup.md diff --git a/output/cmd/landing_main.go b/output/cmd/landing_main.go index d2efbed..284f90b 100644 --- a/output/cmd/landing_main.go +++ b/output/cmd/landing_main.go @@ -53,7 +53,7 @@ func main() { // Serve landing page r.GET("/", func(c *gin.Context) { - c.File("web/templates/landing.html") + c.File("web/templates/accessible_landing.html") }) // Health check endpoint