mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
Add custom Markdoc renderers for images, links, paragraphs, code blocks, inline code, and horizontal rules. Restyle existing heading, table, and list components to match the desert tactical color palette. Add 8 screenshots to docs with polished image presentation (rounded corners, shadow, captions). Constrain content width for readability. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
486 B
TypeScript
17 lines
486 B
TypeScript
import { Head } from '@inertiajs/react'
|
|
import MarkdocRenderer from '~/components/MarkdocRenderer'
|
|
import DocsLayout from '~/layouts/DocsLayout'
|
|
|
|
export default function Show({ content }: { content: any; }) {
|
|
return (
|
|
<DocsLayout>
|
|
<Head title={'Documentation'} />
|
|
<div className="xl:pl-80 pt-14 xl:pt-8 pb-8 px-6 sm:px-8 lg:px-12">
|
|
<div className="max-w-4xl">
|
|
<MarkdocRenderer content={content} />
|
|
</div>
|
|
</div>
|
|
</DocsLayout>
|
|
)
|
|
}
|