| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import { Geist, Geist_Mono } from "next/font/google";
- import "./globals.css";
- import { ThemeProvider } from "@/components/ui/theme-provider";
- import { Toaster } from "@/components/ui/sonner";
- const geistSans = Geist({
- variable: "--font-geist-sans",
- subsets: ["latin"],
- });
- const geistMono = Geist_Mono({
- variable: "--font-geist-mono",
- subsets: ["latin"],
- });
- export const metadata = {
- title: "RHL Lieferscheine",
- description: "Internal delivery note browser",
- };
- export default function RootLayout({ children }) {
- return (
- <html lang="de" suppressHydrationWarning>
- <body
- className={`${geistSans.variable} ${geistMono.variable} min-h-screen bg-background text-foreground antialiased`}
- >
- <ThemeProvider
- attribute="class"
- defaultTheme="system"
- enableSystem
- disableTransitionOnChange
- >
- {children}
- <Toaster position="bottom-center" />
- </ThemeProvider>
- </body>
- </html>
- );
- }
|