This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / app / layout.tsx
713 B 33 lines
1import type { Metadata } from "next"; 2import { 3 ColorSchemeScript, 4 mantineHtmlProps, 5 MantineProvider, 6} from "@mantine/core"; 7import "@mantine/core/styles.css"; 8import { AuthProvider } from "@/hooks/useAuth"; 9import { theme } from "@/styles/theme"; 10 11export const metadata: Metadata = { 12 title: "Annos", 13 description: "Annotation platform", 14}; 15 16export default function RootLayout({ 17 children, 18}: { 19 children: React.ReactNode; 20}) { 21 return ( 22 <html lang="en" {...mantineHtmlProps}> 23 <head> 24 <ColorSchemeScript /> 25 </head> 26 <body> 27 <MantineProvider theme={theme}> 28 <AuthProvider>{children}</AuthProvider> 29 </MantineProvider> 30 </body> 31 </html> 32 ); 33}