rsnext/examples/with-rbx-bulma-pro/pages/index.js

52 lines
1.4 KiB
JavaScript
Raw Normal View History

import Link from 'next/link'
import { Section, Card, Content, Title } from 'rbx'
import Layout from '../components/Layout'
const Home = () => (
<Layout>
<Section>
<Card>
<Card.Content>
<Content>
<Link href='https://github.com/zeit/next.js#getting-started'>
<a>
<Title as='h3'>Getting Started &rarr;</Title>
<p>Learn more about Next on Github and in their examples</p>
</a>
</Link>
</Content>
</Card.Content>
</Card>
<Card>
<Card.Content>
<Content>
2019-07-18 05:27:27 +02:00
<Link href='https://github.com/zeit/next.js/tree/master/examples'>
<a>
<Title as='h3'>Examples &rarr;</Title>
<p>
Find other example boilerplates on the{' '}
<code>create-next-app</code> site
</p>
</a>
</Link>
</Content>
</Card.Content>
</Card>
<Card>
<Card.Content>
<Content>
<Link href='https://github.com/zeit/next.js/tree/canary/packages/create-next-app'>
<a>
<Title as='h3'>Create Next App &rarr;</Title>
<p>Was this tool helpful? Let us know how we can improve it</p>
</a>
</Link>
</Content>
</Card.Content>
</Card>
</Section>
</Layout>
)
export default Home