- refactor home page with router to animate teaser to deliverable page
- custom cursor
- animate labs better when scrolling
- update labs content so show better actions
- ++PWA
- possibly move to CRA?! for users n auth n all
Netlify CMS is an open source content management system for your Git workflow that enables you to provide editors with a friendly UI and intuitive workflows. You can use it with any static site generator to create faster, more flexible web projects. Content is stored in your Git repository alongside your code for easier versioning, multi-channel publishing, and the option to handle content updates directly in Git.
Execute create-next-app
with npm or Yarn to bootstrap the example:
npm init next-app --example with-netlify-cms with-netlify-cms-app
# or
yarn create next-app --example with-netlify-cms with-netlify-cms-app
Download the example:
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-netlify-cms
cd with-netlify-cms
Install it and run:
npm install
npm run dev
# or
yarn
yarn dev
Deploy it to the cloud with Vercel (Documentation).
Sites take its content from markdown files in /content
. Two of pages (home
and about
) are referencing directly their respective markdown files.
Blog component loads all posts (during build!) and lists them out How to load multiple md files
Posts are separate static sites thanks to dynamically created export map. I took inspiration on how to do it from here