import React from 'react'; import solutions from 'data/CyberSecurity/solutions.json'; const Solutions = () => { return (

Our Level

Explore Solutions By Industry

{ solutions.map((solution, idx) => (
{solution.title}
)) }
) } export default Solutions