import clsx from 'clsx' import { BottomNavBar } from './nav/nav-bar' import Sidebar from './nav/sidebar' export function Page(props: { wide?: boolean margin?: boolean assertUser?: 'signed-in' | 'signed-out' rightSidebar?: React.ReactNode children?: any }) { const { wide, margin, assertUser, children, rightSidebar } = props return (