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

9
app/components/Footer.js Normal file
View File

@@ -0,0 +1,9 @@
import { Component } from 'react'
export default class Footer extends Component {
render () {
return (
<div>Footer</div>
)
}
}

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 />
</>
)
}