Plugs in use cases

This commit is contained in:
Brandon Romano 2020-05-06 18:49:38 -07:00
parent 3a59a701d9
commit b0dcf488cb
5 changed files with 17 additions and 23 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -164,52 +164,46 @@ export default function HomePage() {
}} }}
/> />
<div className="use-cases g-grid-container"> <div className="use-cases g-grid-container">
<h2 className="g-type-display-2">Use Cases</h2>
<UseCases <UseCases
items={[ items={[
{ {
title: 'Infrastructure as Code', title: 'Network Middleware Automation',
description: description:
'Use infrastructure as code to provision infrastructure. Codification enables version control and automation, reducing human error and increasing productivity.', 'Reduce burden of manual, ticket-based networking tasks.',
image: { image: {
url: url: require('./img/use-cases/network-middleware-automation.png?url'),
'https://www.datocms-assets.com/2885/1538425176-secrets.svg', format: 'png',
alt: 'optional image',
format: 'svg',
}, },
link: { link: {
title: 'Learn more', title: 'Learn more',
url: 'https://hashicorp.com', url: '/use-cases/network-middleware-automation',
}, },
}, },
{ {
title: 'Multi-Cloud Compliance and Management', title: 'Multi-Platform Service Mesh',
description: description:
'Provision and manage public cloud, private infrastructure, and cloud services with one workflow to learn, secure, govern, and audit.', 'Secure, modern application networking across any cloud or runtime.',
image: { image: {
url: url: require('./img/use-cases/multi-platform-service-mesh.png?url'),
'https://www.datocms-assets.com/2885/1538425176-secrets.svg', format: 'png',
alt: 'optional image',
format: 'svg',
}, },
link: { link: {
title: 'Learn more', title: 'Learn more',
url: 'https://hashicorp.com/products/terraform', url: '/use-cases/multi-platform-service-mesh',
}, },
}, },
{ {
title: 'Self-Service Infrastructure', title: 'Service Discovery & Health Checks',
description: description:
'Enable users to easily provision infrastructure on-demand with a library of approved infrastructure.', 'Enable services to locate other services running in any environment and provide real-time health status.',
image: { image: {
url: url: require('./img/use-cases/service-discovery-and-health-checks.png?url'),
'https://www.datocms-assets.com/2885/1538425176-secrets.svg', format: 'png',
alt: 'optional image',
format: 'svg',
}, },
link: { link: {
title: 'Learn more', title: 'Learn more',
url: 'https://terraform.io', url: '/use-cases/service-discovery-and-health-checks',
external: true,
}, },
}, },
]} ]}

View File

@ -14,7 +14,7 @@
& .g-use-cases { & .g-use-cases {
& .icon { & .icon {
/* min-height: 140px; */ min-height: 140px;
margin-bottom: 25px; margin-bottom: 25px;
} }
} }