Adds page specific metadata to use case pages
This commit is contained in:
parent
cf7b7f9e6f
commit
a0c30060b3
|
@ -1,9 +1,17 @@
|
||||||
import BasicHero from '../../components/basic-hero'
|
import BasicHero from '../../components/basic-hero'
|
||||||
import PrefooterCTA from '../../components/prefooter-cta'
|
import PrefooterCTA from '../../components/prefooter-cta'
|
||||||
import ConsulEnterpriseComparison from '../../components/enterprise-comparison/consul'
|
import ConsulEnterpriseComparison from '../../components/enterprise-comparison/consul'
|
||||||
|
import Head from 'next/head'
|
||||||
|
import HashiHead from '@hashicorp/react-head'
|
||||||
|
|
||||||
export default function UseCaseLayout({ title, description, children }) {
|
export default function UseCaseLayout({ title, description, children }) {
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<HashiHead
|
||||||
|
is={Head}
|
||||||
|
title={`Consul ${title}`}
|
||||||
|
description={description}
|
||||||
|
/>
|
||||||
<div id="p-use-case">
|
<div id="p-use-case">
|
||||||
<BasicHero
|
<BasicHero
|
||||||
heading={title}
|
heading={title}
|
||||||
|
@ -29,5 +37,6 @@ export default function UseCaseLayout({ title, description, children }) {
|
||||||
<ConsulEnterpriseComparison />
|
<ConsulEnterpriseComparison />
|
||||||
<PrefooterCTA />
|
<PrefooterCTA />
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue