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.tsx30
1 files changed, 16 insertions, 14 deletions
diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx
index 00da3a9..7eae606 100644
--- a/frontend/src/app/layout.tsx
+++ b/frontend/src/app/layout.tsx
@@ -1,21 +1,23 @@
-import type {Metadata} from "next";
-import {Inter} from "next/font/google";
+import type { Metadata } from "next";
+import { Inter } from "next/font/google";
import "./globals.css";
-import {UserProvider} from "@auth0/nextjs-auth0/client";
+import { UserProvider } from "@auth0/nextjs-auth0/client";
-const inter = Inter({subsets: ["latin"]});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Create Next App",
- description: "Generated by create next app",
+ 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>
- );
+export default function RootLayout({
+ children,
+}: Readonly<{ children: React.ReactNode }>) {
+ return (
+ <html lang="en">
+ <UserProvider>
+ <body className={inter.className}>{children}</body>
+ </UserProvider>
+ </html>
+ );
}