import Title from './title'; import Container, { ChildrenType } from './container'; type LayoutProps = { children?: ChildrenType, removeContainer?: boolean, }; function Layout(props: LayoutProps) { return ( <>