Description
The four documentation links in the landing page footer (under the "Docs" heading) trigger an infinite redirect loop when clicked:
- Overview →
/docs
- Architecture →
/docs/architecture
- Plugins →
/docs/plugins
- Changelog →
/docs/changelog
Clicking any of them leads to:
This page isn't working
aoagents.dev redirected you too many times.
ERR_TOO_MANY_REDIRECTS
Steps to Reproduce
- Go to https://aoagents.dev
- Scroll down to the footer
- Click any of the four links under "Docs" (Overview, Architecture, Plugins, Changelog)
Expected Behavior
Links navigate to the corresponding documentation pages without redirecting.
Actual Behavior
Browser hits a redirect loop and shows ERR_TOO_MANY_REDIRECTS.
Environment
- URL: https://aoagents.dev
- Browser: Chrome (reproducible across browsers — clearing cookies does not resolve it)
Notes
- The footer component is
frontend/src/landing/components/LandingFooter.tsx
- The docs content files exist (
content/docs/index.mdx, content/docs/architecture.mdx, content/docs/plugins/index.mdx, content/docs/changelog.mdx)
- The catch-all route
app/docs/[[...slug]]/page.tsx handles these paths
- No redirect rules found in
next.config.mjs, middleware, or hosting config (vercel.json/netlify.toml do not exist)
- The "Product" column links (
/docs/installation, /docs/cli) in the same footer may also be affected
Description
The four documentation links in the landing page footer (under the "Docs" heading) trigger an infinite redirect loop when clicked:
/docs/docs/architecture/docs/plugins/docs/changelogClicking any of them leads to:
Steps to Reproduce
Expected Behavior
Links navigate to the corresponding documentation pages without redirecting.
Actual Behavior
Browser hits a redirect loop and shows
ERR_TOO_MANY_REDIRECTS.Environment
Notes
frontend/src/landing/components/LandingFooter.tsxcontent/docs/index.mdx,content/docs/architecture.mdx,content/docs/plugins/index.mdx,content/docs/changelog.mdx)app/docs/[[...slug]]/page.tsxhandles these pathsnext.config.mjs, middleware, or hosting config (vercel.json/netlify.tomldo not exist)/docs/installation,/docs/cli) in the same footer may also be affected