Adjust order & remove titles on HashiStack section
This commit is contained in:
parent
b4c5a8c028
commit
5fe6c13aeb
|
@ -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}>
|
||||
|
|
|
@ -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: 'Nomad’s 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: 'Nomad’s integration with Consul',
|
||||
url:
|
||||
'https://learn.hashicorp.com/collections/nomad/integrate-consul',
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
|
|
Loading…
Reference in New Issue