Spaces:
Runtime error
Runtime error
File size: 644 Bytes
58faf93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import '@mantine/core/styles.css'
import { MantineProvider, ColorSchemeScript } from '@mantine/core'
import ReactQueryProvider from '@/app/ReactQueryProvider'
import type { ReactNode } from 'react'
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Chromadb Admin',
}
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html>
<head suppressHydrationWarning>
<ColorSchemeScript />
</head>
<body>
<ReactQueryProvider>
<MantineProvider>{children}</MantineProvider>
</ReactQueryProvider>
</body>
</html>
)
}
|