diff options
Diffstat (limited to '')
-rw-r--r-- | examples/next/pages/index.tsx (renamed from examples/hello-next/pages/index.tsx) | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/examples/hello-next/pages/index.tsx b/examples/next/pages/index.tsx index 9101ed8c7..11903e8e5 100644 --- a/examples/hello-next/pages/index.tsx +++ b/examples/next/pages/index.tsx @@ -20,7 +20,7 @@ export default function Home({}) { <main className={styles.main}> <h1 className={styles.title}> - Welcome!!to <a href="https://nextjs.org">Next.js!</a> + Welcome to <a href="https://nextjs.org">Next.js!</a> </h1> <p className={styles.description}> @@ -37,14 +37,6 @@ export default function Home({}) { </Link> <a - onClick={() => router.push("/foo/bar/third")} - className={styles.card} - > - <h2>Third Page →</h2> - <p>button, router.push()</p> - </a> - - <a href="https://github.com/vercel/next.js/tree/master/examples" className={styles.card} > |