Oh I’d just use a single type (Introduction to the Content Manager | Strapi Documentation) in Strapi then. And in your frontend code you use that one single type from Strapi to display that component across various pages (fetch it once, cache it). It doesn’t have to be related to the Strapi collections shown across various pages.
If you did want to let content editors control whether or not that reusable component is shown for some reason you could use a boolean attribute on those collections with a common name like “showIndustries” and just include some custom logic in your frontend code to look for an attribute with that name. Something like that anyways.