├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── pages ├── _app.jsx ├── api │ └── note │ │ ├── [id].js │ │ └── index.js ├── index.jsx └── notes │ ├── [id].jsx │ └── index.jsx ├── src ├── components │ └── nav.jsx └── data │ └── data.js ├── theme.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | public 4 | .next 5 | .env 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/pages/_app.jsx -------------------------------------------------------------------------------- /pages/api/note/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/pages/api/note/[id].js -------------------------------------------------------------------------------- /pages/api/note/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/pages/api/note/index.js -------------------------------------------------------------------------------- /pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/pages/index.jsx -------------------------------------------------------------------------------- /pages/notes/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/pages/notes/[id].jsx -------------------------------------------------------------------------------- /pages/notes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/pages/notes/index.jsx -------------------------------------------------------------------------------- /src/components/nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/src/components/nav.jsx -------------------------------------------------------------------------------- /src/data/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/src/data/data.js -------------------------------------------------------------------------------- /theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/theme.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hendrixer/nextjs-course-app/HEAD/yarn.lock --------------------------------------------------------------------------------