type mode =
| FullScreen
| Fit800px;
[@react.component]
let make = (~children, ~background=Theme.Color.Gray2, ~mode=Fit800px) => {
"h-100vh w-100vw"
| Fit800px => "h-full w-[800px]"
},
"flex",
"flex-col",
"items-center",
"justify-start",
Theme.background(background),
])}>
children
;
};