12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
import type { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Documentation",
|
|
description:
|
|
"Configuration reference for Oh My OpenAgent. Agents, categories, skills, hooks, MCPs, and more.",
|
|
}
|
|
|
|
export default function DocsLayout({ children }: { children: React.ReactNode }) {
|
|
return children
|
|
}
|