2022-11-09 21:38:05 -05:00
|
|
|
import "@styles/globals.css"
|
2022-11-09 01:14:43 -05:00
|
|
|
import { ServerThemeProvider } from "next-themes"
|
2022-11-09 21:38:05 -05:00
|
|
|
import { LayoutWrapper } from "./root-layout-wrapper"
|
2022-11-11 22:17:44 -05:00
|
|
|
import styles from '@styles/Home.module.css';
|
2022-11-12 21:39:03 -05:00
|
|
|
import { cookies } from "next/headers";
|
2022-11-14 04:28:40 -05:00
|
|
|
import { getSession } from "@lib/server/session";
|
2022-11-09 01:14:43 -05:00
|
|
|
|
|
|
|
interface RootLayoutProps {
|
|
|
|
children: React.ReactNode
|
|
|
|
}
|
|
|
|
|
2022-11-11 22:17:44 -05:00
|
|
|
export default async function RootLayout({ children }: RootLayoutProps) {
|
2022-11-14 02:02:31 -05:00
|
|
|
// TODO: this opts out of SSG
|
2022-11-14 04:28:40 -05:00
|
|
|
const session = await getSession()
|
2022-11-09 01:14:43 -05:00
|
|
|
return (
|
|
|
|
<ServerThemeProvider
|
2022-11-11 22:17:44 -05:00
|
|
|
disableTransitionOnChange
|
2022-11-09 21:38:05 -05:00
|
|
|
attribute="data-theme"
|
2022-11-11 19:33:43 -05:00
|
|
|
enableColorScheme
|
2022-11-09 01:14:43 -05:00
|
|
|
>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-11-14 02:02:31 -05:00
|
|
|
|
2022-11-09 01:14:43 -05:00
|
|
|
</head>
|
2022-11-11 22:17:44 -05:00
|
|
|
<body className={styles.main}>
|
2022-11-14 04:28:40 -05:00
|
|
|
<LayoutWrapper signedIn={Boolean(session?.user)} isAdmin={session?.user.role === "admin"}>{children}</LayoutWrapper>
|
2022-11-10 02:11:36 -05:00
|
|
|
</body>
|
2022-11-09 01:14:43 -05:00
|
|
|
</html>
|
|
|
|
</ServerThemeProvider>
|
|
|
|
)
|
|
|
|
}
|