Update order of use cases
This commit is contained in:
parent
17332aaac9
commit
a0316d3766
|
@ -3,6 +3,10 @@ export default [
|
|||
{
|
||||
text: 'Use Cases',
|
||||
submenu: [
|
||||
{
|
||||
text: 'Service Discovery and Health Checking',
|
||||
url: '/use-cases/service-discovery-and-health-checking',
|
||||
},
|
||||
{
|
||||
text: 'Network Middleware Automation',
|
||||
url: '/use-cases/network-middleware-automation',
|
||||
|
@ -11,10 +15,6 @@ export default [
|
|||
text: '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',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
|
|
@ -137,6 +137,19 @@ export default function HomePage() {
|
|||
<h2 className="g-type-display-2">Use Cases</h2>
|
||||
<UseCases
|
||||
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',
|
||||
description:
|
||||
|
@ -163,19 +176,6 @@ export default function HomePage() {
|
|||
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>
|
||||
|
|
Loading…
Reference in New Issue