import { Metadata } from 'next' import { Footer, DocsSidebar, DocsNav } from '@/app/components' export const metadata: Metadata = { title: 'Documentation - Standard.site', description: 'Learn how to implement Standard.site lexicons for long-form publishing on AT Protocol.', } export default function DocsLayout({ children }: { children: React.ReactNode }) { return (
{children}
{/* Reserved for table of contents */}
) }