2020-02-14 15:11:37 +00:00
import CallToAction from '@hashicorp/react-call-to-action'
2020-06-01 21:48:25 +00:00
import NomadEnterpriseInfo from 'components/enterprise-info/nomad'
import BasicHero from 'components/basic-hero'
2020-02-14 15:11:37 +00:00
export default function UseCaseLayout ( { title , description , children } ) {
return (
< div id = "p-use-case" >
< BasicHero
heading = { title }
content = { description }
links = { [
{
text : 'Explore HashiCorp Learn' ,
url : 'https://learn.hashicorp.com/nomad' ,
2020-06-01 21:48:25 +00:00
type : 'outbound' ,
2020-02-14 15:11:37 +00:00
} ,
{
text : 'Explore Documentation' ,
url : '/docs' ,
2020-06-01 21:48:25 +00:00
type : 'inbound' ,
} ,
2020-02-14 15:11:37 +00:00
] }
/ >
< div className = "g-grid-container" >
< h2 className = "g-type-display-2 features-header" > Features < / h2 >
< / div >
{ children }
< NomadEnterpriseInfo / >
< CallToAction
variant = "compact"
heading = "Ready to get started?"
content = "Nomad Open Source addresses the technical complexity of managing a mixed type of workloads in production at scale by providing a simple and flexible workload orchestrator across distributed infrastructure and clouds."
brand = "nomad"
links = { [
{
text : 'Explore HashiCorp Learn' ,
type : 'outbound' ,
2020-06-01 21:48:25 +00:00
url : 'https://learn.hashicorp.com/nomad' ,
2020-02-14 15:11:37 +00:00
} ,
{
text : 'Explore Documentation' ,
type : 'inbound' ,
2020-06-01 21:48:25 +00:00
url : '/docs' ,
} ,
2020-02-14 15:11:37 +00:00
] }
/ >
< / div >
)
}