mirror of https://github.com/status-im/consul.git
34 lines
937 B
React
34 lines
937 B
React
|
import BasicHero from '../../components/basic-hero'
|
||
|
import PrefooterCTA from '../../components/prefooter-cta'
|
||
|
import ConsulEnterpriseComparison from '../../components/enterprise-comparison/consul'
|
||
|
|
||
|
export default function UseCaseLayout({ title, description, children }) {
|
||
|
return (
|
||
|
<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 />
|
||
|
</div>
|
||
|
)
|
||
|
}
|