File size: 350 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import Head from 'next/head'
export default () => {
return (
<div>
<Head>
<meta charSet="iso-8859-5" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="title" content="head title" />
</Head>
<p>next/head should be placed above the document/head.</p>
</div>
)
}
|