diff options
Diffstat (limited to 'frontend/app/layout.tsx')
| -rw-r--r-- | frontend/app/layout.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx index 2e001e4..9cc7dac 100644 --- a/frontend/app/layout.tsx +++ b/frontend/app/layout.tsx | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | import type { Metadata } from "next"; | 1 | import type { Metadata } from "next"; |
| 2 | import { Geist, Geist_Mono } from "next/font/google"; | 2 | import { Geist, Geist_Mono } from "next/font/google"; |
| 3 | import "./globals.css"; | 3 | import "./globals.css"; |
| 4 | import AuthButton from "@/components/AuthButton"; | 4 | import { Toaster } from "@/components/ui/toaster"; |
| 5 | 5 | ||
| 6 | const geistSans = Geist({ | 6 | const geistSans = Geist({ |
| 7 | variable: "--font-geist-sans", | 7 | variable: "--font-geist-sans", |
| @@ -28,10 +28,8 @@ export default function RootLayout({ | |||
| 28 | <body | 28 | <body |
| 29 | className={`${geistSans.variable} ${geistMono.variable} antialiased`} | 29 | className={`${geistSans.variable} ${geistMono.variable} antialiased`} |
| 30 | > | 30 | > |
| 31 | <div className="absolute top-4 right-4 z-10"> | ||
| 32 | <AuthButton /> | ||
| 33 | </div> | ||
| 34 | {children} | 31 | {children} |
| 32 | <Toaster /> | ||
| 35 | </body> | 33 | </body> |
| 36 | </html> | 34 | </html> |
| 37 | ); | 35 | ); |
