diff --git a/app/layout.tsx b/app/layout.tsx index c1aaec2..3a121ab 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,21 +1,21 @@ - import type { Metadata } from "next"; import "./globals.css"; -import { IBM_Plex_Sans, IBM_Plex_Mono } from 'next/font/google'; +import { IBM_Plex_Sans, IBM_Plex_Mono } from "next/font/google"; import { Provider } from "@/components/ui/provider"; import { Flex } from "@chakra-ui/react"; import { Toaster } from "@/components/ui/toaster"; +import { Suspense } from "react"; const ibmPlexSans = IBM_Plex_Sans({ - subsets: ['latin'], - variable: '--font-ibm' + subsets: ["latin"], + variable: "--font-ibm", }); const ibmPlexMono = IBM_Plex_Mono({ - subsets: ['latin'], - weight: '600', - variable: '--font-ibm-mono' -}) + subsets: ["latin"], + weight: "600", + variable: "--font-ibm-mono", +}); export const metadata: Metadata = { title: "LMGCITFY", @@ -31,9 +31,18 @@ export default function RootLayout({