manifold/web/components/page.tsx

22 lines
398 B
TypeScript
Raw Normal View History

import clsx from 'clsx'
import { NavBar } from './nav-bar'
export function Page(props: { wide?: boolean; children?: any }) {
const { wide, children } = props
return (
<div>
2021-12-20 04:37:11 +00:00
<NavBar wide={wide} />
2021-12-31 19:31:41 +00:00
<div
className={clsx(
2022-01-12 17:57:35 +00:00
'w-full px-2 pb-8 mx-auto',
wide ? 'max-w-6xl' : 'max-w-4xl'
)}
>
{children}
</div>
</div>
)
}