import React from 'react' import Head from 'next/head' export default () => (
{/* this will not render */} {/* this will get rendered */} {/* this will not render */} {/* this will override the default */} {/* allow duplicates for specific tags */} Fragment title {/* the following 2 links tag will be rendered both */} {/* only one tag will be rendered as they have the same key */} {/* such style can be used for alternate links on _app vs individual pages */} {['pl', 'en'].map(language => ( ))} {['pl', 'en'].map(language => ( ))}

I can have meta tags

)