diff --git a/src/components/widgets/Hero2.astro b/src/components/widgets/Hero2.astro index 7e49859..36f501d 100644 --- a/src/components/widgets/Hero2.astro +++ b/src/components/widgets/Hero2.astro @@ -6,6 +6,7 @@ import { CallToAction } from '~/types'; export interface Props { title?: string; subtitle?: string; + tagline?: string; content?: string; callToAction?: string | CallToAction; callToAction2?: string | CallToAction; @@ -15,6 +16,7 @@ export interface Props { const { title = await Astro.slots.render('title'), subtitle = await Astro.slots.render('subtitle'), + tagline, content = await Astro.slots.render('content'), callToAction = await Astro.slots.render('callToAction'), callToAction2 = await Astro.slots.render('callToAction2'), @@ -28,6 +30,12 @@ const {