mirror of https://github.com/sgoudham/carbon.git
Move Header and Footer into separate files
parent
7dac7ae15c
commit
cb3a9093b3
@ -0,0 +1,20 @@
|
|||||||
|
import React from 'react'
|
||||||
|
|
||||||
|
const Footer = (props) => (
|
||||||
|
<div className="footer">
|
||||||
|
<span>a project by <a href="https://twitter.com/dawn_labs">@dawn_labs ¬</a></span>
|
||||||
|
<style jsx>{`
|
||||||
|
div {
|
||||||
|
font-size: 14px;
|
||||||
|
margin: 32px 0;
|
||||||
|
color: #506874;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #C694E8;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
`}</style>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
|
||||||
|
export default Footer
|
@ -0,0 +1,32 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import Logo from './svg/Logo'
|
||||||
|
|
||||||
|
const Header = (props) => (
|
||||||
|
<div className="header">
|
||||||
|
<div className="header-content">
|
||||||
|
<Logo />
|
||||||
|
<h1>The easiest way to create images from source code. Start typing, or drag a file into the text area to get started.</h1>
|
||||||
|
</div>
|
||||||
|
<style jsx>{`
|
||||||
|
.header {
|
||||||
|
margin: 40px 0 48px;
|
||||||
|
width: 648px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-content {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
max-width: 472px;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
`}</style>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
|
||||||
|
export default Header
|
Loading…
Reference in New Issue