Update order of use cases

pull/7883/head
Brandon Romano 5 years ago
parent 64f20facef
commit 14ef7e7c83

@ -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',
},
], ],
}, },
{ {

@ -138,42 +138,42 @@ export default function HomePage() {
<UseCases <UseCases
items={[ items={[
{ {
title: 'Network Middleware Automation', title: 'Service Discovery and Health Checking',
description: description:
'Reduce burden of manual, ticket-based networking tasks.', 'Enable services to locate other services running in any environment and provide real-time health status.',
image: { image: {
url: require('./img/use-cases/network-middleware-automation.png?url'), url: require('./img/use-cases/service-discovery-and-health-checks.png?url'),
format: 'png', format: 'png',
}, },
link: { link: {
title: 'Learn more', title: 'Learn more',
url: '/use-cases/network-middleware-automation', url: '/use-cases/service-discovery-and-health-checking',
}, },
}, },
{ {
title: 'Multi-Platform Service Mesh', title: 'Network Middleware Automation',
description: description:
'Secure, modern application networking across any cloud or runtime.', 'Reduce burden of manual, ticket-based networking tasks.',
image: { image: {
url: require('./img/use-cases/multi-platform-service-mesh.png?url'), url: require('./img/use-cases/network-middleware-automation.png?url'),
format: 'png', format: 'png',
}, },
link: { link: {
title: 'Learn more', title: 'Learn more',
url: '/use-cases/multi-platform-service-mesh', url: '/use-cases/network-middleware-automation',
}, },
}, },
{ {
title: 'Service Discovery and Health Checking', title: 'Multi-Platform Service Mesh',
description: description:
'Enable services to locate other services running in any environment and provide real-time health status.', 'Secure, modern application networking across any cloud or runtime.',
image: { image: {
url: require('./img/use-cases/service-discovery-and-health-checks.png?url'), url: require('./img/use-cases/multi-platform-service-mesh.png?url'),
format: 'png', format: 'png',
}, },
link: { link: {
title: 'Learn more', title: 'Learn more',
url: '/use-cases/service-discovery-and-health-checking', url: '/use-cases/multi-platform-service-mesh',
}, },
}, },
]} ]}

Loading…
Cancel
Save