headroom/docs/app/layout.tsx
2026-04-12 13:15:58 +06:00

28 lines
775 B
TypeScript

import { RootProvider } from 'fumadocs-ui/provider/next';
import './global.css';
import { Inter } from 'next/font/google';
import type { Metadata } from 'next';
const inter = Inter({
subsets: ['latin'],
});
export const metadata: Metadata = {
title: {
default: 'Headroom',
template: '%s | Headroom',
},
description:
'Compress everything your AI agent reads. Same answers, fraction of the tokens.',
metadataBase: new URL('https://chopratejas.github.io/headroom/'),
};
export default function Layout({ children }: LayoutProps<'/'>) {
return (
<html lang="en" className={inter.className} suppressHydrationWarning>
<body className="flex flex-col min-h-screen">
<RootProvider>{children}</RootProvider>
</body>
</html>
);
}