diff --git a/README.md b/README.md index 588278e..4f439fa 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ This repository contains starter templates for [Learn Next.js](https://nextjs.org/learn). -The final result for the basics lesson can be found in the [basics-final](basics-final) directory and is available at: [https://next-learn-starter.now.sh/](https://next-learn-starter.now.sh/). \ No newline at end of file +The final result for the basics lesson can be found in the [demo](demo) directory and is available at: [https://next-learn-starter.now.sh/](https://next-learn-starter.now.sh/). \ No newline at end of file diff --git a/example/.gitignore b/demo/.gitignore similarity index 100% rename from example/.gitignore rename to demo/.gitignore diff --git a/example/README.md b/demo/README.md similarity index 100% rename from example/README.md rename to demo/README.md diff --git a/example/components/date.js b/demo/components/date.js similarity index 100% rename from example/components/date.js rename to demo/components/date.js diff --git a/example/components/layout.js b/demo/components/layout.js similarity index 100% rename from example/components/layout.js rename to demo/components/layout.js diff --git a/example/components/layout.module.css b/demo/components/layout.module.css similarity index 100% rename from example/components/layout.module.css rename to demo/components/layout.module.css diff --git a/example/lib/posts.js b/demo/lib/posts.js similarity index 100% rename from example/lib/posts.js rename to demo/lib/posts.js diff --git a/example/package.json b/demo/package.json similarity index 100% rename from example/package.json rename to demo/package.json diff --git a/example/pages/_app.js b/demo/pages/_app.js similarity index 100% rename from example/pages/_app.js rename to demo/pages/_app.js diff --git a/example/pages/api/hello.js b/demo/pages/api/hello.js similarity index 100% rename from example/pages/api/hello.js rename to demo/pages/api/hello.js diff --git a/example/pages/index.js b/demo/pages/index.js similarity index 100% rename from example/pages/index.js rename to demo/pages/index.js diff --git a/example/pages/posts/[id].js b/demo/pages/posts/[id].js similarity index 100% rename from example/pages/posts/[id].js rename to demo/pages/posts/[id].js diff --git a/example/posts/pre-rendering.md b/demo/posts/pre-rendering.md similarity index 100% rename from example/posts/pre-rendering.md rename to demo/posts/pre-rendering.md diff --git a/example/posts/ssg-ssr.md b/demo/posts/ssg-ssr.md similarity index 100% rename from example/posts/ssg-ssr.md rename to demo/posts/ssg-ssr.md diff --git a/example/public/favicon.ico b/demo/public/favicon.ico similarity index 100% rename from example/public/favicon.ico rename to demo/public/favicon.ico diff --git a/example/public/images/profile.jpg b/demo/public/images/profile.jpg similarity index 100% rename from example/public/images/profile.jpg rename to demo/public/images/profile.jpg diff --git a/example/styles/global.css b/demo/styles/global.css similarity index 100% rename from example/styles/global.css rename to demo/styles/global.css diff --git a/example/styles/utils.module.css b/demo/styles/utils.module.css similarity index 100% rename from example/styles/utils.module.css rename to demo/styles/utils.module.css