Stripped-down Gatsby small business starter that uses the well-maintained and beautiful Material UI React.js project. Fully configured to reliably work with this powerful library out-of-the-box, in PROD, and in DEV with hot-reloading.
- Material UI: the world's most popular Material Design React.js framework
- Stylus for CSS
- Material Design icons
- Relatively bare: we don't burden the project with a lot of complex hoopla
For something a bit simpler that also uses Material UI, check out our Tiny Agency starter.
- Edit contact detail and menu items in
gatsby-config.json
. - Want to add a new product? Just add a new markdown file in
programs
and it will automatically be included.
You can use CSS in two different ways:
- Edit the Stylus file
style.styl
directly to add classes/etc. You can then adjust components to use these classes. - Use Material UI's
withStyles()
to override and dynamically set classes from within each component. For an example of how to do this, please seeHomeFeatures.js
, including getting and using theme colors.
You can adjust the theme palette colors in
getPageContext.js
.
npm install
Delete node_modules/gatsby-source-contentful/src/fragements.js
Update contentful space id in gatsby.config.js
Update contentful access token in .env e.g. CONTENTFUL_ACCESS_TOKEN=my_access_token
509eab674c258a994cc442331fefc71cc2f043c7
yarn
To build, watch for file edits and hot-reload, and run locally:
yarn run develop
To build for PROD:
yarn run build
While you could run gatsby
commands directly, it is preferable to use yarn run
(and see corresponding scripts in package.json
) so as to avoid
differences between local and global gatsby
versions. (See the CLI
instructions for more details.)