project-nomad/admin/inertia/components/markdoc/ListItem.tsx
Chris Sherwood 1a95b84a8c feat(docs): polish docs rendering with desert-themed components
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>
2026-02-06 14:41:30 -08:00

4 lines
164 B
TypeScript

export function ListItem({ children }: { children: React.ReactNode }) {
return <li className="pl-2 text-desert-green-darker/85 leading-relaxed">{children}</li>
}