-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathlayout.tsx
27 lines (24 loc) · 883 Bytes
/
layout.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { Analytics } from "@/components/analytics";
import { TailwindIndicator } from "@/components/tailwind-indicator";
import { ThemeProvider } from "@/components/theme-provider";
import { Toaster } from "@/components/ui/toaster";
import { constructMetadata } from "@/lib/utils";
import "./globals.css";
export const metadata = constructMetadata();
interface RootLayoutProps {
children: React.ReactNode;
}
export default function RootLayout({ children }: RootLayoutProps) {
return (
<html lang="en" suppressHydrationWarning>
<body className="antialiased min-h-screen bg-white dark:bg-slate-950 text-slate-900 dark:text-slate-50">
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
{children}
<Toaster />
<TailwindIndicator />
<Analytics />
</ThemeProvider>
</body>
</html>
);
}