2016-10-16 04:31:05 +00:00
|
|
|
import React from 'react'
|
|
|
|
import P from '../components/paragraph'
|
|
|
|
import Post from '../components/post'
|
2016-10-25 08:16:54 +00:00
|
|
|
import style from 'next/css'
|
2016-10-16 04:31:05 +00:00
|
|
|
|
|
|
|
export default () => (
|
2016-10-21 16:39:20 +00:00
|
|
|
<div className={styles.main}>
|
2016-10-17 00:00:17 +00:00
|
|
|
<Post title='My first blog post'>
|
2016-10-16 04:31:05 +00:00
|
|
|
<P>Hello there</P>
|
|
|
|
<P>This is an example of a componentized blog post</P>
|
|
|
|
</Post>
|
|
|
|
|
|
|
|
<Hr />
|
|
|
|
|
2016-10-17 00:00:17 +00:00
|
|
|
<Post title='My second blog post'>
|
2016-10-16 04:31:05 +00:00
|
|
|
<P>Hello there</P>
|
|
|
|
<P>This is another example.</P>
|
|
|
|
<P>Wa-hoo!</P>
|
|
|
|
</Post>
|
|
|
|
|
|
|
|
<Hr />
|
|
|
|
|
2016-10-17 00:00:17 +00:00
|
|
|
<Post title='The final blog post'>
|
2016-10-16 04:31:05 +00:00
|
|
|
<P>C'est fin</P>
|
|
|
|
</Post>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
|
2016-10-21 16:39:20 +00:00
|
|
|
const Hr = () => <hr className={styles.hr} />
|
2016-10-16 04:31:05 +00:00
|
|
|
|
2016-10-21 16:39:20 +00:00
|
|
|
const styles = {
|
|
|
|
main: style({
|
2016-10-16 04:31:05 +00:00
|
|
|
margin: 'auto',
|
|
|
|
maxWidth: '420px',
|
|
|
|
padding: '10px'
|
2016-10-21 16:39:20 +00:00
|
|
|
}),
|
2016-10-16 04:31:05 +00:00
|
|
|
|
2016-10-21 16:39:20 +00:00
|
|
|
hr: style({
|
2016-10-16 04:31:05 +00:00
|
|
|
width: '100px',
|
|
|
|
borderWidth: 0,
|
|
|
|
margin: '20px auto',
|
|
|
|
textAlign: 'center',
|
2016-10-21 16:39:20 +00:00
|
|
|
'::before': {
|
2016-10-16 04:31:05 +00:00
|
|
|
content: '"***"',
|
|
|
|
color: '#ccc'
|
|
|
|
}
|
2016-10-21 16:39:20 +00:00
|
|
|
})
|
|
|
|
}
|