import React from 'react' import P from '../components/paragraph' import Post from '../components/post' import style from 'next/css' export default () => (

Hello there

This is an example of a componentized blog post


Hello there

This is another example.

Wa-hoo!


C'est fin

) const Hr = () =>
const styles = { main: style({ margin: 'auto', maxWidth: '420px', padding: '10px' }), hr: style({ width: '100px', borderWidth: 0, margin: '20px auto', textAlign: 'center', '::before': { content: '"***"', color: '#ccc' } }) }