diff --git a/packages/create-next-app/templates/default/pages/index.js b/packages/create-next-app/templates/default/pages/index.js index b837299c1f457..d1fb088aaaf1a 100644 --- a/packages/create-next-app/templates/default/pages/index.js +++ b/packages/create-next-app/templates/default/pages/index.js @@ -1,203 +1,204 @@ import Head from 'next/head' -const Home = () => ( -
- - Create Next App - - - -
-

- Welcome to Next.js! -

- -

- Get started by editing pages/index.js -

- -
- -

Documentation →

-

Find in-depth information about Next.js features and API.

-
- - -

Learn →

-

Learn about Next.js in an interactive course with quizzes!

-
- +export default function Home() { + return ( +
+ + Create Next App + + + +
+

+ Welcome to Next.js! +

+ +

+ Get started by editing pages/index.js +

+ + +
+ + - -

Deploy →

-

- Instantly deploy your Next.js site to a public URL with ZEIT Now. -

-
-
-
- - - - + + - - -
-) - -export default Home + `} + + ) +}