next.js/test/e2e/app-dir/metadata/app/title/page.tsx
page.tsx18 lines316 B
import React from 'react'
import Link from 'next/link'
import type { Metadata } from 'next'

export default function Page() {
  return (
    <div id="title">
      <Link id="to-index" href="/">
        to index
      </Link>
    </div>
  )
}

export const metadata: Metadata = {
  title: 'this is the page title',
}
Quest for Codev2.0.0
/
SIGN IN