next.js/test/e2e/app-dir/middleware-rsc-external-rewrite/app/page.tsx
page.tsx16 lines298 B
import Link from 'next/link'

export default function HomePage() {
  return (
    <div>
      <h1>Home Page</h1>
      <div id="home-content">
        <p>This is the home page</p>
        <Link href="/about" id="about-link">
          Go to About Page
        </Link>
      </div>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN