open-consul/website/layouts/use-cases/index.jsx

43 lines
1.2 KiB
React
Raw Normal View History

2020-05-07 03:38:38 +00:00
import BasicHero from '../../components/basic-hero'
import PrefooterCTA from '../../components/prefooter-cta'
import ConsulEnterpriseComparison from '../../components/enterprise-comparison/consul'
import Head from 'next/head'
import HashiHead from '@hashicorp/react-head'
2020-05-07 03:38:38 +00:00
export default function UseCaseLayout({ title, description, children }) {
return (
<>
<HashiHead
is={Head}
title={`Consul ${title}`}
description={description}
2020-05-07 03:38:38 +00:00
/>
<div id="p-use-case">
<BasicHero
heading={title}
content={description}
brand="consul"
links={[
{
text: 'Explore HashiCorp Learn',
url: 'https://learn.hashicorp.com/consul',
type: 'outbound',
},
{
text: 'Explore Documentation',
url: '/docs',
type: 'inbound',
},
]}
/>
<div className="g-grid-container">
<h2 className="g-type-display-2 features-header">Features</h2>
</div>
{children}
<ConsulEnterpriseComparison />
<PrefooterCTA />
2020-05-07 03:38:38 +00:00
</div>
</>
2020-05-07 03:38:38 +00:00
)
}