Update order of use cases

This commit is contained in:
Brandon Romano 2020-05-13 00:30:23 -07:00
parent 17332aaac9
commit a0316d3766
2 changed files with 17 additions and 17 deletions

View File

@ -3,6 +3,10 @@ export default [
{ {
text: 'Use Cases', text: 'Use Cases',
submenu: [ submenu: [
{
text: 'Service Discovery and Health Checking',
url: '/use-cases/service-discovery-and-health-checking',
},
{ {
text: 'Network Middleware Automation', text: 'Network Middleware Automation',
url: '/use-cases/network-middleware-automation', url: '/use-cases/network-middleware-automation',
@ -11,10 +15,6 @@ export default [
text: 'Multi-Platform Service Mesh', text: 'Multi-Platform Service Mesh',
url: '/use-cases/multi-platform-service-mesh', url: '/use-cases/multi-platform-service-mesh',
}, },
{
text: 'Service Discovery and Health Checking',
url: '/use-cases/service-discovery-and-health-checking',
},
], ],
}, },
{ {

View File

@ -137,6 +137,19 @@ export default function HomePage() {
<h2 className="g-type-display-2">Use Cases</h2> <h2 className="g-type-display-2">Use Cases</h2>
<UseCases <UseCases
items={[ items={[
{
title: 'Service Discovery and Health Checking',
description:
'Enable services to locate other services running in any environment and provide real-time health status.',
image: {
url: require('./img/use-cases/service-discovery-and-health-checks.png?url'),
format: 'png',
},
link: {
title: 'Learn more',
url: '/use-cases/service-discovery-and-health-checking',
},
},
{ {
title: 'Network Middleware Automation', title: 'Network Middleware Automation',
description: description:
@ -163,19 +176,6 @@ export default function HomePage() {
url: '/use-cases/multi-platform-service-mesh', url: '/use-cases/multi-platform-service-mesh',
}, },
}, },
{
title: 'Service Discovery and Health Checking',
description:
'Enable services to locate other services running in any environment and provide real-time health status.',
image: {
url: require('./img/use-cases/service-discovery-and-health-checks.png?url'),
format: 'png',
},
link: {
title: 'Learn more',
url: '/use-cases/service-discovery-and-health-checking',
},
},
]} ]}
/> />
</div> </div>