This commit is contained in:
louiscklaw
2025-02-01 01:19:51 +08:00
commit 3b0b154910
32597 changed files with 1171319 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import Link from "next/link";
function About() {
return (
<div>
<h1>About Page</h1>
<p>
Sample form application using next.js, which can be realised by using custom-server.
<br />
<Link href="https://nextjs.org/docs/advanced-features/custom-server">Custom Server - next.js</Link>
</p>
<p>
Custom servers have hot reload disabled and must be hot reloaded using nodemon.
<br />
<Link href="https://github.com/remy/nodemon">nodemon</Link>
</p>
<p>
<Link href="/">To Top</Link>
</p>
</div>
);
}
export default About;

View File

@@ -0,0 +1,19 @@
import Link from "next/link";
function About() {
return (
<div>
<h1>Top Page</h1>
<ul>
<li>
<Link href="/about">About Page</Link>
</li>
<li>
<Link href="/register">Regsiter Form</Link>
</li>
</ul>
</div>
);
}
export default About;