- 📝 Simplistic blog setup using posts created with MDX
- 🔎 Algolia Search, search by all attributes
- 🌗 Togglable support for both light and dark mode
- 📲 PWA support, installable on Android and iOS
- 💻 SEO ready with meta description and other head tags
- 📧 Getform.io contact form, easy to stay in touch
Not you must have already installed Node.JS and Gatsby CLI.
nvm install 18
nvm use 18
npm install -g gatsby-cli
-
Install project dependencies
npm install
. If having problems installing try with legacy peer dependencies,npm install --legacy-peer-deps
. -
Start Developing. Navigate into the site’s directory and start up the local server
gatsby develop
🎉.
Adding your own content is super simple with the Jamstack design of the project. You won't need to write any HTML or CSS, just markdown (although you absolutely can if you wish to change the design or add your own features). The MDX posts are found in the content/posts/
directory. With MDX you can even add react components to your posts as found below.
Visit mdxjs.com to see what other cool things you can implement.
## Example header here
lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, quidem quisquam.
<Alert severity="info">
Visit <a href="https://python.org">here</a> for docs and examples.
</Alert>