2017-07-08 12:05:46 +00:00
|
|
|
import {
|
|
|
|
Provider,
|
|
|
|
Container,
|
|
|
|
Heading,
|
|
|
|
Blockquote,
|
|
|
|
Toolbar,
|
|
|
|
NavLink,
|
|
|
|
Flex,
|
|
|
|
Box
|
|
|
|
} from 'rebass'
|
|
|
|
|
|
|
|
function HomePage () {
|
|
|
|
return (
|
|
|
|
<Provider>
|
|
|
|
<Heading is='h1' children='Next.js + Rebass' mb={3} center />
|
|
|
|
|
|
|
|
<Container>
|
|
|
|
<Toolbar bg='black'>
|
2018-12-17 16:34:32 +00:00
|
|
|
<NavLink href='https://github.com/zeit/next.js/' target='_blank'>
|
|
|
|
Next.js
|
|
|
|
</NavLink>
|
2017-07-08 12:05:46 +00:00
|
|
|
<NavLink ml='auto' href='http://jxnblk.com/rebass/' target='_blank'>
|
|
|
|
REBASS
|
|
|
|
</NavLink>
|
|
|
|
</Toolbar>
|
|
|
|
|
|
|
|
<Flex justify='center'>
|
|
|
|
<Box width={1 / 2}>
|
|
|
|
<Blockquote center fontSize={3} py={4}>
|
2018-12-17 16:34:32 +00:00
|
|
|
"Next.js is a minimalistic framework for server-rendered React
|
|
|
|
applications."
|
2017-07-08 12:05:46 +00:00
|
|
|
</Blockquote>
|
|
|
|
</Box>
|
|
|
|
<Box width={6 / 12}>
|
|
|
|
<Blockquote center fontSize={3} py={4}>
|
2018-12-17 16:34:32 +00:00
|
|
|
"Functional React UI component library, built with
|
|
|
|
styled-components"
|
2017-07-08 12:05:46 +00:00
|
|
|
</Blockquote>
|
|
|
|
</Box>
|
|
|
|
</Flex>
|
|
|
|
</Container>
|
|
|
|
</Provider>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default HomePage
|