Adjust order & remove titles on HashiStack section

This commit is contained in:
Brandon Romano 2021-05-06 16:26:26 -07:00
parent b4c5a8c028
commit 5fe6c13aeb
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} />
<div className={styles.flexWrapper}>
<div className={styles.infoWrapper}>
<h5>{callout.title}</h5>
{callout.title && <h5>{callout.title}</h5>}
<p>{callout.description}</p>
</div>
<div className={styles.linkWrapper}>

View File

@ -71,21 +71,8 @@ export default function HomePage() {
<CalloutBlade
title="Consul with HashiCorp Stack"
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'),
title: 'Infrastructure Automation with Consul',
description:
'Use the Terraform provider ecosystem to drive relevant changes to your infrastructure based on Consul services.',
eyebrow: 'Tutorials',
@ -97,7 +84,6 @@ export default function HomePage() {
},
{
icon: require('./img/stack/consul-and-vault.svg?include'),
title: 'Secure Consul with Vault',
description:
'Integrate Consul with Vault and consul-template to securely store and rotate your encryption key and certificates.',
eyebrow: 'Tutorials',
@ -107,6 +93,17 @@ export default function HomePage() {
'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',
},
},
]}
/>