open-nomad/website/components/use-case-page/index.jsx

50 lines
1.5 KiB
React
Raw Normal View History

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."
[Assembly]: Website Branding Refresh (#10188) * style: update gray brand colors * style: update brand colors * chore: upgrade react-components deps * chore: update text split cta link color * style(home): update icons * refactor(home): use learn-callout component * style(downloads): temporary color override * style(community): fix link color * Update website/pages/community/style.css Co-authored-by: Zachary Shilton <4624598+zchsh@users.noreply.github.com> * update package-lock * update deps * add new downloads page * remove extra husky script * chore: upgrades nextjs-scripts dep * chore: upgrades community page vertical text block list * chore: test component pre-releases * chore: upgrade deps chore: upgrades nextjs-scripts * chore: update home icon colors * chore: update home logo grid * chore(website): upgrade deps * style: adjust features icons border radius * style: home hero bg to secondary * chore: upgrade deps for body copy colors * chore: upgrades alert banner * feat: updates favicon * chore: updates deps * content(home): updates assets * content(use-cases:simple container orch): updates content * content(use-cases:non-containerized-app) updates assets * content(use-cases:auto networking with consul): updates assets * style(home): remove use cases icons override * style(home-hero): remove bg pattern on mobile * content(use-cases): updates asset * chore: update assets * chore: updates product download page to alpha * chore: updates product download page to stable Co-authored-by: Zachary Shilton <4624598+zchsh@users.noreply.github.com> Co-authored-by: Jeff Escalante <jescalan@users.noreply.github.com>
2021-05-03 18:06:55 +00:00
product="nomad"
2020-02-14 15:11:37 +00:00
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>
)
}