src/Twig/Components/PageHeroThemed.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Twig\Components;
  3. use App\Entity\Page;
  4. use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
  5. #[AsTwigComponent('PageHeroThemed')]
  6. class PageHeroThemed
  7. {
  8. public Page $page;
  9. public string|null $title = null;
  10. public string|null $subtitle = null;
  11. public string|null $image = null;
  12. public bool $bg = true;
  13. }