diff --git a/website/components/prefooter-cta/index.jsx b/website/components/prefooter-cta/index.jsx new file mode 100644 index 0000000000..53f99f2478 --- /dev/null +++ b/website/components/prefooter-cta/index.jsx @@ -0,0 +1,25 @@ +import CallToAction from '@hashicorp/react-call-to-action' + +export default function PrefooterCTA() { + return ( + + ) +} diff --git a/website/pages/home/index.jsx b/website/pages/home/index.jsx index 4cd08757da..f878325243 100644 --- a/website/pages/home/index.jsx +++ b/website/pages/home/index.jsx @@ -1,7 +1,7 @@ -import CallToAction from '@hashicorp/react-call-to-action' import UseCases from '@hashicorp/react-use-cases' import BasicHero from '../../components/basic-hero' import ConsulEnterpriseComparison from '../../components/consul-enterprise-comparison' +import PrefooterCTA from '../../components/prefooter-cta' import LearnCallout from '../../components/learn-callout' import CaseStudyCarousel from '../../components/case-study-carousel' import ProductFeaturesList from '@hashicorp/react-product-features-list' @@ -168,28 +168,8 @@ export default function HomePage() { }, ]} /> - - - + ) }