Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions apps/playground/app/docs/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "Documentation | Intuition MCP",
description:
"Complete guide to the Intuition MCP monorepo — installation, Claude Desktop integration, tool reference, and algorithm documentation for the Intuition MCP and Trust Score MCP servers.",
};

export default function DocsLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}
Loading