diff --git a/website/src/components/AuthLayout.tsx b/website/src/components/AuthLayout.tsx index 3e45dd65..08b5378a 100644 --- a/website/src/components/AuthLayout.tsx +++ b/website/src/components/AuthLayout.tsx @@ -1,11 +1,14 @@ +import { Box, useColorModeValue } from "@chakra-ui/react"; + export function AuthLayout({ children }) { + const backgroundColor = useColorModeValue("#FFFFFF", "#000000"); return ( -
+
{children}
-
+ ); }