added mcp docs

This commit is contained in:
dswbx
2025-08-30 10:05:22 +02:00
parent c7e709c4d0
commit 4229477fb6
19 changed files with 1534 additions and 1288 deletions
+16
View File
@@ -0,0 +1,16 @@
import { cn } from "@/lib/cn";
import type { HTMLAttributes } from "react";
export function Wrapper(props: HTMLAttributes<HTMLDivElement>) {
return (
<div
{...props}
className={cn(
"rounded-lg bg-radial-[at_bottom] from-fd-primary/10 p-4 border bg-origin-border border-fd-accent-primary/10 prose-no-margin dark:bg-black/20",
props.className,
)}
>
{props.children}
</div>
);
}