From d7151f07bf41f617dd96bced381660fd48faebf1 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Tue, 17 Aug 2021 04:10:49 -0700 Subject: hello-next folder Former-commit-id: dc1c431e6e5c24dd581857090ca872c716cffe07 --- demos/hello-next/pages/index.js | 69 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 demos/hello-next/pages/index.js (limited to 'demos/hello-next/pages/index.js') diff --git a/demos/hello-next/pages/index.js b/demos/hello-next/pages/index.js new file mode 100644 index 000000000..4db0d5ae6 --- /dev/null +++ b/demos/hello-next/pages/index.js @@ -0,0 +1,69 @@ +import Head from "next/head"; +import Image from "next/image"; +import styles from "../styles/Home.module.css"; + +export default function Home() { + return ( +
+ + 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!

+
+ + +

Examples →

+

Discover and deploy boilerplate example Next.js projects.

+
+ + +

Deploy →

+

+ Instantly deploy your Next.js site to a public URL with Vercel. +

+
+
+
+ + +
+ ); +} -- cgit v1.2.3