docs/app/layout.tsx
Molecule AI · app-lead b498c55819
Some checks are pending
CI / build (push) Waiting to run
Secret scan / secret-scan (push) Waiting to run
feat(docs): SEO metadata + a11y focus-visible rings (#18)
2026-05-11 04:40:16 +00:00

42 lines
1.3 KiB
TypeScript

import './global.css';
import { RootProvider } from 'fumadocs-ui/provider/next';
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'),
openGraph: {
type: 'website',
siteName: 'Molecule AI Documentation',
title: 'Molecule AI Documentation',
description:
'Build and run multi-agent organisations on the Molecule AI platform. Templates, plugins, channels, and the runtime that ties them together.',
},
twitter: {
card: 'summary_large_image',
title: 'Molecule AI Documentation',
description:
'Build and run multi-agent organisations on the Molecule AI platform.',
},
};
export default function Layout({ children }: { children: ReactNode }) {
return (
<html lang="en" className={inter.className} suppressHydrationWarning>
<body className="flex flex-col min-h-screen">
<RootProvider>{children}</RootProvider>
</body>
</html>
);
}