Blog = Gatsby + React + Material-UI + Notion + Netlify
gatsby-theme-gine-blog is a Gatsby theme plugin that is designed to be used with gatsby-source-notion-database. It allows users to easily deploy a website with a theme similar to that of https://gine.me.
To install and use gatsby-theme-gine-blog, follow these steps:
npm install -g gatsby-cli
gatsby new my-gine-blog https://github.com/author/gatsby-starter-gine-blog
cd my-gine-blog
npm install gatsby-theme-gine-blog gatsby-source-notion-database
gatsby-config.js file:module.exports = {
plugins: [
{
resolve: "gatsby-theme-gine-blog",
options: {
notionDatabaseId: "your-notion-database-id",
},
},
],
}
Make sure to replace “your-notion-database-id” with the actual ID of your Notion database.
gatsby develop
You can now view your gatsby-starter-gine-blog website by navigating to http://localhost:8000 in your web browser.
gatsby-theme-gine-blog is a Gatsby theme plugin that enables users to deploy a website with a consistent and visually appealing design similar to https://gine.me. By integrating with gatsby-source-notion-database, users can leverage Notion databases as a data source for their website. Follow the installation guide to get started with this theme quickly and easily.