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 (
← All docs
{children}
; } export function DocUl({ items }: { items: string[] }) { return (