CoastalCommitsPastes/client/app/layout.tsx

35 lines
811 B
TypeScript
Raw Normal View History

2022-11-09 21:38:05 -05:00
import "@styles/globals.css"
import { LayoutWrapper } from "./root-layout-wrapper"
import { getSession } from "@lib/server/session"
import { ServerThemeProvider } from "@wits/next-themes"
2022-11-09 01:14:43 -05:00
interface RootLayoutProps {
children: React.ReactNode
}
export default async function RootLayout({ children }: RootLayoutProps) {
// TODO: this opts out of SSG
const session = await getSession()
2022-11-09 01:14:43 -05:00
return (
<ServerThemeProvider
enableSystem={true}
disableTransitionOnChange
cookieName={"drift-theme"}
attribute="data-theme"
enableColorScheme={true}
>
<html lang="en">
<head />
<body>
<LayoutWrapper
signedIn={Boolean(session?.user)}
isAdmin={session?.user.role === "admin"}
>
{children}
</LayoutWrapper>
2022-11-10 02:11:36 -05:00
</body>
</html>
</ServerThemeProvider>
2022-11-09 01:14:43 -05:00
)
}