make page a React components

main
Mike Fix 6 years ago
parent b9144edea4
commit 6babce42a9

@ -3,24 +3,31 @@ import Meta from './Meta'
import Header from './Header'
import Footer from './Footer'
export default ({ children, enableHeroText }) => (
<main className="main mt4 mb4">
<Meta />
<Header enableHeroText={enableHeroText} />
<div className="page">{children}</div>
class Page extends React.Component {
render() {
const { children, enableHeroText } = this.props
return (
<main className="main mt4 mb4">
<Meta />
<Header enableHeroText={enableHeroText} />
<div className="page">{children}</div>
<Footer />
<Footer />
<style jsx>
{`
.main {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
min-width: 1080px; // temporary fix for mobile overflow issue
}
`}
</style>
</main>
)
<style jsx>
{`
.main {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
min-width: 1080px; // temporary fix for mobile overflow issue
}
`}
</style>
</main>
)
}
}
export default Page

Loading…
Cancel
Save