next.js/test/e2e/opentelemetry/client-trace-metadata/pages/pages-router/static-page.tsx
static-page.tsx16 lines375 B
import Link from 'next/link'

export default function StaticPage() {
  return (
    <>
      <h1 id="static-page-header">Static Page</h1>
      <Link href="/pages-router/dynamic-page" id="go-to-dynamic-page">
        Go to dynamic page
      </Link>
      <Link href="/pages-router/static-page-2" id="go-to-static-page">
        Go to static page
      </Link>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN