diff options
Diffstat (limited to 'frontend/src/app/layout.tsx')
-rw-r--r-- | frontend/src/app/layout.tsx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx new file mode 100644 index 0000000..bb15d68 --- /dev/null +++ b/frontend/src/app/layout.tsx @@ -0,0 +1,27 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; +import { UserProvider } from "@auth0/nextjs-auth0/client"; +import { config } from "@fortawesome/fontawesome-svg-core"; +import "@fortawesome/fontawesome-svg-core/styles.css"; + +config.autoAddCss = false; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Create Next App", + description: "Generated by create next app", +}; + +export default function RootLayout({ + children, + }: Readonly<{ children: React.ReactNode }>) { + return ( + <html lang="en"> + <UserProvider> + <body className={inter.className}>{children}</body> + </UserProvider> + </html> + ); +} |