Version: 0.7.1
Last Updated: Unknown
Use this tempalate to generate new lift projects.
| Variable | Data Type | Info |
|---|---|---|
name | string | Name of the blog post |
1---2basedir: content/blog3---4---5date: "<%= name.split('-').filter((_data, index) => index < 3).join("-") %>"6image: https://cdn.dennisokeeffe.com/assets/<%= name %>/main-image.png7title: <%= _.startCase(name.split('-').filter((_data, index) => index >= 3)) %>8description: <%= description %>9tags: "beginner,nextjs,javascript"10icons: "dok,nextjs,js"11---1213This post will ...1415Source code can be found [here](https://github.com/okeeffed)1617## Prerequisites18191. Basic familiarity with [Create Next App](https://nextjs.org/docs/api-reference/create-next-app).202. `create-next-app` installed.213. Basic familiarity with [Next.js](https://nextjs.org/).2223## Getting started2425We will let `create-next-app` create the project directory `hello-world` for us:2627```s28$ npx create-next-app hello-world29# ... creates Next.js app for us30$ cd hello-world31```3233At this stage, a working Next.js app is ready for us.3435## ...3637...3839## Summary4041Today's post demonstrated how to ...4243## Resources and further reading44451. Basic familiarity with [Create Next App](https://nextjs.org/docs/api-reference/create-next-app).462. Basic familiarity with [Next.js](https://nextjs.org/).4748_Photo credit: [`user`](https://unsplash.com/@user)_