From 15a78f31294e500ee5df2ff7aee1fb04bd0b5e37 Mon Sep 17 00:00:00 2001 From: kavi Date: Wed, 8 Apr 2026 16:08:24 +0530 Subject: [PATCH] docs: improve architecture page fallback navigation Improved the fallback state for the root architecture page when documentation content is not yet available. This change adds a clearer message and a navigation link back to the main documentation so users are not left at a dead end. --- apps/docs-site/src/app/architecture/page.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/apps/docs-site/src/app/architecture/page.tsx b/apps/docs-site/src/app/architecture/page.tsx index 703df7c7..7c390a2a 100644 --- a/apps/docs-site/src/app/architecture/page.tsx +++ b/apps/docs-site/src/app/architecture/page.tsx @@ -4,6 +4,7 @@ import { ReadmeContent } from '@/components/readme-content' import { getRootArchitecture } from '@/lib/docs-loader' import { markdownToHtml } from '@/lib/markdown' import { extractMermaidBlocks } from '@/lib/mermaid-utils' +import Link from 'next/link' export default async function ArchitecturePage() { const content = getRootArchitecture() @@ -14,7 +15,16 @@ export default async function ArchitecturePage() {

Architecture

-

Architecture documentation is coming soon. Check back later.

+

Architecture documentation is currently being prepared. In the meantime, + you can explore the main documentation and available library pages.

+
+ + ← Back to Documentation + +