Spaces:
Sleeping
Sleeping
File size: 649 Bytes
3786a3f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import type { Metadata } from 'next';
import './globals.css';
import { ThemeProvider } from '@/components/layout/ThemeProvider';
export const metadata: Metadata = {
title: 'GraphRAG — Knowledge Graph AI',
description:
'Build intelligent knowledge graphs from your documents. Query with natural language. Get graph-grounded answers with multi-hop reasoning.',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className="font-sans antialiased">
<ThemeProvider>{children}</ThemeProvider>
</body>
</html>
);
}
|