ComponentsLayoutOn this pageLayoutMain layout container. Contains global styles and the burger menu.Propschildren = {React.ReactNode}React children propExample with codeimport Layout from '@components/Layout';const MyComponent = () => { return ( <Layout> <Header /> <Body> Your content </Body> <Footer /> </Layout> );};