({title, subtitle})
| 583 | } |
| 584 | |
| 585 | function SectionHeading({title, subtitle}) { |
| 586 | const dark = useTheme().palette.mode === 'dark'; |
| 587 | return ( |
| 588 | <Box sx={{textAlign: 'center', mb: {xs: 2, md: 3}}}> |
| 589 | <Typography variant='h4' sx={{fontWeight: 800, display: 'inline-block', ...gradientTextSx(dark)}}> |
| 590 | {title} |
| 591 | </Typography> |
| 592 | {subtitle ? <Typography sx={{color: 'text.secondary', mt: 0.75}}>{subtitle}</Typography> : null} |
| 593 | </Box> |
| 594 | ); |
| 595 | } |
| 596 | |
| 597 | function FeaturesBlock() { |
| 598 | const dark = useTheme().palette.mode === 'dark'; |
nothing calls this directly
no test coverage detected