Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion apps/docs-site/src/app/architecture/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -14,7 +15,16 @@ export default async function ArchitecturePage() {
<Header />
<main className="mx-auto max-w-7xl px-4 py-16 sm:px-6 lg:px-8">
<h1 className="font-display text-4xl font-bold text-slate-900 dark:text-white">Architecture</h1>
<p className="mt-4 text-lg text-slate-600 dark:text-slate-400">Architecture documentation is coming soon. Check back later.</p>
<p className="mt-4 text-lg text-slate-600 dark:text-slate-400">Architecture documentation is currently being prepared. In the meantime,
you can explore the main documentation and available library pages.</p>
<div className="mt-8">
<Link
href="/docs"
className="text-sm font-medium text-primary-600 hover:underline dark:text-primary-400"
>
← Back to Documentation
</Link>
</div>
</main>
<Footer />
</>
Expand Down
Loading