We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e2465 commit 0a4cb89Copy full SHA for 0a4cb89
1 file changed
frontend/src/app/layout.tsx
@@ -1,12 +1,16 @@
1
'use client';
2
import './globals.css';
3
4
+import { Outfit } from 'next/font/google';
5
import { SidebarProvider } from '@/context/SidebarContext';
6
import { ThemeProvider } from '@/context/ThemeContext';
7
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
8
9
const queryClient = new QueryClient();
10
11
+const outfit = Outfit({
12
+ subsets: ["latin"],
13
+});
14
15
export default function RootLayout({
16
children,
@@ -15,7 +19,7 @@ export default function RootLayout({
19
}>) {
20
return (
17
21
<html lang="en">
18
- <body>
22
+ <body className={`${outfit.className} dark:bg-gray-900`}>
23
<QueryClientProvider client={queryClient}>
24
<ThemeProvider>
25
<SidebarProvider>{children}</SidebarProvider>
0 commit comments