diff options
Diffstat (limited to 'components/Layout.js')
-rw-r--r-- | components/Layout.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/components/Layout.js b/components/Layout.js index 8c48dd5..e9393a1 100644 --- a/components/Layout.js +++ b/components/Layout.js @@ -24,10 +24,8 @@ const Layout = ({ <meta name='theme-color' content='#ffffff' /> </Head> <section className={styles.layout + ' ' + settings.theme}> - <main> - <div className='container'>{children}</div> - </main> <Header /> + <div className='container'>{children}</div> <Popup /> </section> </> |