Spaces:
Sleeping
Sleeping
| 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> | |
| ); | |
| } | |