1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-zones/home/pages/index.js
Tim Neutkens 02ab732096
Remove next/asset (#6046)
* Remove next/asset

Reasoning described in #5970

* Remove next/asset tests

* Bring back asset-page
2019-01-14 01:32:20 +01:00

23 lines
426 B
JavaScript

import Link from 'next/link'
import dynamic from 'next/dynamic'
const Header = dynamic(import('../components/Header'))
export default () => (
<div>
<Header />
<p>This is our homepage</p>
<div>
<Link href='/blog'>
<a>Blog</a>
</Link>
</div>
<div>
<Link href='/about'>
<a>About us</a>
</Link>
</div>
<img width={200} src='/static/nextjs.png' />
</div>
)