style header

This commit is contained in:
Thomas Ruoff
2020-10-08 23:52:08 +02:00
parent 306a5729fa
commit 5fde863577
4 changed files with 11 additions and 6 deletions

View File

@@ -2,5 +2,9 @@ import React from 'react'
import '../styles/index.css'
export default function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
return (
<div className="wrapper">
<Component {...pageProps} />
</div>
)
}

View File

@@ -6,7 +6,7 @@ import Wizard from '../components/wizard/index'
export default function Home() {
return (
<div className="wrapper">
<>
<Head>
<title>Pfadi Bussle Buchen</title>
<link rel="icon" href="/favicon.ico" />
@@ -17,6 +17,6 @@ export default function Home() {
<Wizard />
</main>
<Footer />
</div>
</>
)
}