File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 11'use client' ;
22import './globals.css' ;
33
4+ import { Outfit } from 'next/font/google' ;
45import { SidebarProvider } from '@/context/SidebarContext' ;
56import { ThemeProvider } from '@/context/ThemeContext' ;
67import { QueryClient , QueryClientProvider } from '@tanstack/react-query' ;
78
89const queryClient = new QueryClient ( ) ;
910
11+ const outfit = Outfit ( {
12+ subsets : [ "latin" ] ,
13+ } ) ;
1014
1115export default function RootLayout ( {
1216 children,
@@ -15,7 +19,7 @@ export default function RootLayout({
1519} > ) {
1620 return (
1721 < html lang = "en" >
18- < body >
22+ < body className = { ` ${ outfit . className } dark:bg-gray-900` } >
1923 < QueryClientProvider client = { queryClient } >
2024 < ThemeProvider >
2125 < SidebarProvider > { children } </ SidebarProvider >
You can’t perform that action at this time.
0 commit comments