from wagtail.core.models import Page
from wagtail.core.fields import StreamField
from wagtailnhsukfrontend.blocks import CardFeatureBlock,
class MyPage(Page):
body = StreamField([
...
('clickable_card', CardFeatureBlock()),
...
])