Docker deploy yml
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-03-18 22:24:25 +03:00
parent 2198e134d6
commit 2c4cd8ca5d
7 changed files with 100 additions and 44 deletions

View File

@@ -1,4 +1,5 @@
import Head from 'next/head'
import Footer from './Footer'
export default function Layout ({ children }) {
return (
@@ -8,6 +9,7 @@ export default function Layout ({ children }) {
<link rel='icon' href='/favicon.ico' />
</Head>
<main>{children}</main>
<Footer />
</>
)
}