From 870cf5102eccf2079f6d474470f06bc7edbd860a Mon Sep 17 00:00:00 2001 From: Brandon Romano Date: Tue, 8 Jun 2021 21:26:12 -0700 Subject: [PATCH] Homepage Update --- website/components/section-break-cta/index.tsx | 3 ++- .../section-break-cta/style.module.css | 8 ++++++++ website/pages/home/index.jsx | 17 ++++++++++++++++- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/website/components/section-break-cta/index.tsx b/website/components/section-break-cta/index.tsx index 5a034eb0f..e0a87c730 100644 --- a/website/components/section-break-cta/index.tsx +++ b/website/components/section-break-cta/index.tsx @@ -1,11 +1,12 @@ import Button from '@hashicorp/react-button' import s from './style.module.css' -export default function SectionBreakCta({ heading, link }) { +export default function SectionBreakCta({ heading, description, link }) { return (

{heading}

+ {description &&

{description}

}