Hero subtitle
A Hero component to show headlines at the start of pages.
A 'Hero' component, as the one used in this page, displayed above.
1import Hero from '@tempoplatform/tpds/components/hero/Hero'
2import { P, H1 } from '../../tpds/elements/typography'
3
4<Hero className="bg-grey-light-scale-500 dark:bg-grey-dark-scale-500">
5 <H1 isMedium>Headline</H1>
6 <P>Description.</P>
7</Hero>