Merge pull request #10203 from hashicorp/br.hashistack-tweak

Adjust order, remove titles, on HashiStack section
This commit is contained in:
Brandon Romano 2021-05-07 10:51:37 -07:00 committed by hc-github-team-consul-core
parent 2b28d25f20
commit bbda48f7c5
2 changed files with 12 additions and 15 deletions

View File

@ -21,7 +21,7 @@ export default function CalloutBlade({ title, callouts }) {
<InlineSvg src={callout.icon} className={styles.icon} /> <InlineSvg src={callout.icon} className={styles.icon} />
<div className={styles.flexWrapper}> <div className={styles.flexWrapper}>
<div className={styles.infoWrapper}> <div className={styles.infoWrapper}>
<h5>{callout.title}</h5> {callout.title && <h5>{callout.title}</h5>}
<p>{callout.description}</p> <p>{callout.description}</p>
</div> </div>
<div className={styles.linkWrapper}> <div className={styles.linkWrapper}>

View File

@ -71,21 +71,8 @@ export default function HomePage() {
<CalloutBlade <CalloutBlade
title="Consul with HashiCorp Stack" title="Consul with HashiCorp Stack"
callouts={[ callouts={[
{
icon: require('./img/stack/consul-and-nomad.svg?include'),
title: 'Consul-Nomad Integration',
description:
'Secure Nomad jobs with Consul Service Mesh and use Traffic Splitting for zero-downtime, blue-green, canary deployments.',
eyebrow: 'Tutorials',
link: {
text: 'Nomads integration with Consul',
url:
'https://learn.hashicorp.com/collections/nomad/integrate-consul',
},
},
{ {
icon: require('./img/stack/consul-and-terraform.svg?include'), icon: require('./img/stack/consul-and-terraform.svg?include'),
title: 'Infrastructure Automation with Consul',
description: description:
'Use the Terraform provider ecosystem to drive relevant changes to your infrastructure based on Consul services.', 'Use the Terraform provider ecosystem to drive relevant changes to your infrastructure based on Consul services.',
eyebrow: 'Tutorials', eyebrow: 'Tutorials',
@ -97,7 +84,6 @@ export default function HomePage() {
}, },
{ {
icon: require('./img/stack/consul-and-vault.svg?include'), icon: require('./img/stack/consul-and-vault.svg?include'),
title: 'Secure Consul with Vault',
description: description:
'Integrate Consul with Vault and consul-template to securely store and rotate your encryption key and certificates.', 'Integrate Consul with Vault and consul-template to securely store and rotate your encryption key and certificates.',
eyebrow: 'Tutorials', eyebrow: 'Tutorials',
@ -107,6 +93,17 @@ export default function HomePage() {
'https://learn.hashicorp.com/collections/consul/vault-secure', 'https://learn.hashicorp.com/collections/consul/vault-secure',
}, },
}, },
{
icon: require('./img/stack/consul-and-nomad.svg?include'),
description:
'Secure Nomad jobs with Consul Service Mesh and use Traffic Splitting for zero-downtime, blue-green, canary deployments.',
eyebrow: 'Tutorials',
link: {
text: 'Nomads integration with Consul',
url:
'https://learn.hashicorp.com/collections/nomad/integrate-consul',
},
},
]} ]}
/> />