github.com/uchennaokeke444/nomad@v0.11.8/website/components/enterprise-info/nomad.jsx (about) 1 import EnterpriseInfo from './index.jsx' 2 3 const technicalComplexity = { 4 title: 'Technical Complexity', 5 label: 'Open Source', 6 imageUrl: 7 'https://www.datocms-assets.com/2885/1579883486-complexity-basic.png', 8 description: 9 'Nomad Open Source addresses the technical complexity of workload orchestration across the cloud, on-prem, and hybrid infrastructure.', 10 link: { 11 text: 'View Open Source Features', 12 url: 'https://www.hashicorp.com/products/nomad/pricing/', 13 type: 'outbound' 14 } 15 } 16 17 const organizationalComplexity = { 18 title: 'Organizational Complexity', 19 label: 'Enterprise', 20 imageUrl: 21 'https://www.datocms-assets.com/2885/1579883488-complexity-advanced.png', 22 description: 23 'Nomad Enterprise addresses the complexity of collaboration and governance across multi-team and multi-cluster deployments.', 24 link: { 25 text: 'View Enterprise Features', 26 url: 'https://www.hashicorp.com/products/nomad/pricing/', 27 type: 'outbound' 28 } 29 } 30 31 export default function NomadEnterpriseInfo() { 32 return ( 33 <EnterpriseInfo 34 title="When to consider Nomad Enterprise?" 35 itemOne={technicalComplexity} 36 itemTwo={organizationalComplexity} 37 /> 38 ) 39 }