- All components ready to go (including imports)
- Use main.css - less imports
- Limit amount of components - better overview
- React Icons
[react icons] https://react-icons.github.io/react-icons/
import { FaHome } from "react-icons/fa"
const Component = () => {
return <FaHome className="icon"></FaHome>
}
-
Use constants to avoid repetition.
-
Make sure such content-types exist in your Strapi application. Or replace/delete them in gatsby-config.js
{
resolve: `gatsby-source-strapi`,
options: {
apiURL: `http://localhost:1337`,
queryLimit: 1000, // Default to 100
// contentTypes: [`jobs`, `projects`, `blogs`, ],
//singleTypes:[`about` ]
contentTypes: [`jobs`, `projects`, `blogs`],
singleTypes: [`about`],
},
},