buildTemplate method
Marketing-specific styling with more visual elements
Implementation
@override
FlintWidget buildTemplate() {
return FlintBox(
constraints: BoxConstraints(maxWidth: 600),
backgroundColor: '#ffffff',
children: [
_buildMarketingHeader(),
buildContent(),
_buildMarketingFooter(),
],
);
}