next.js/test/development/pages-dir/client-navigation/fixture/pages/head-with-custom-metadata.js
head-with-custom-metadata.js15 lines318 B
import Head from 'next/head'

export default function Page() {
  return (
    <div>
      <Head>
        <title>Title Page</title>
        <meta property="og:title" content="Title Content" />
        <meta name="description" content="Description Content" />
      </Head>
      <p>This is a page!</p>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN