mirror of https://github.com/status-im/consul.git
Merge pull request #10203 from hashicorp/br.hashistack-tweak
Adjust order, remove titles, on HashiStack section
This commit is contained in:
parent
2b28d25f20
commit
bbda48f7c5
|
@ -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}>
|
||||||
|
|
|
@ -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: 'Nomad’s 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: 'Nomad’s integration with Consul',
|
||||||
|
url:
|
||||||
|
'https://learn.hashicorp.com/collections/nomad/integrate-consul',
|
||||||
|
},
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue