import Link from "next/link"; import type { ReactNode } from "react"; import { PageShell } from "@/components/layout/page-shell"; export function DocArticle({ title, description, children, }: { title: string; description: string; children: ReactNode; }) { return (
{children}

← All docs

); } export function DocH2({ children }: { children: ReactNode }) { return (

{children}

); } export function DocP({ children }: { children: ReactNode }) { return

{children}

; } export function DocUl({ items }: { items: string[] }) { return ( ); }