Adjust order & remove titles on HashiStack section

This commit is contained in:
Brandon Romano 2021-05-06 16:26:26 -07:00
parent 24fc07be09
commit 5d7a49d510
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',
},
},
]} ]}
/> />