import './global.css'; import { RootProvider } from 'fumadocs-ui/provider'; import { Inter } from 'next/font/google'; import type { ReactNode } from 'react'; const inter = Inter({ subsets: ['latin'], }); export const metadata = { title: { default: 'Molecule AI Documentation', template: '%s | Molecule AI Docs', }, description: 'Build and run multi-agent organisations on the Molecule AI platform. Templates, plugins, channels, and the runtime that ties them together.', metadataBase: new URL('https://doc.moleculesai.app'), }; export default function Layout({ children }: { children: ReactNode }) { return ( {children} ); }