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

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