aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/layout.tsx')
-rw-r--r--frontend/src/app/layout.tsx14
1 files changed, 9 insertions, 5 deletions
diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx
index 7eae606..bb15d68 100644
--- a/frontend/src/app/layout.tsx
+++ b/frontend/src/app/layout.tsx
@@ -2,6 +2,10 @@ 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"] });
@@ -11,13 +15,13 @@ export const metadata: Metadata = {
};
export default function RootLayout({
- children,
-}: Readonly<{ children: React.ReactNode }>) {
+ children,
+ }: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="en">
- <UserProvider>
- <body className={inter.className}>{children}</body>
- </UserProvider>
+ <UserProvider>
+ <body className={inter.className}>{children}</body>
+ </UserProvider>
</html>
);
}