From f135199546df0a1a47a0a84ea411ac6fb2d495d8 Mon Sep 17 00:00:00 2001 From: andrewcb22 <131554903+andrewcb22@users.noreply.github.com> Date: Thu, 30 Jul 2026 22:42:20 -0300 Subject: [PATCH] docs: fix broken footer Guides link The footer 'Guides' link pointed to docs/guides/movie-quotes-app-tutorial, which returns a 404. Point it at the Guides category index instead. Fixes #210 --- docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index a69e25b5bd..c0e8108975 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -232,7 +232,7 @@ const config = { }, { label: 'Guides', - to: 'docs/guides/movie-quotes-app-tutorial' + to: 'docs/guides' } ] },