FeaturesSection constructor

const FeaturesSection({
  1. required List<Feature> features,
  2. String eyebrow = 'Recursos',
  3. String title = 'Tudo que um site moderno precisa',
  4. String subtitle = 'Pré-configurado e pronto para produção — e 100% personalizável.',
  5. String id = 'servicos',
  6. FlenxCardHover? cardHover,
  7. String cardGlowColor = FlenxPalette.primary,
  8. bool animate = false,
  9. Key? key,
})

Implementation

const FeaturesSection({
  required this.features,
  this.eyebrow = 'Recursos',
  this.title = 'Tudo que um site moderno precisa',
  this.subtitle =
      'Pré-configurado e pronto para produção — e 100% personalizável.',
  this.id = 'servicos',
  this.cardHover,
  this.cardGlowColor = FlenxPalette.primary,
  this.animate = false,
  super.key,
});