<?phpnamespace App\Twig\Components;use App\Entity\Page;use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;#[AsTwigComponent('PageHeroThemed')]class PageHeroThemed{ public Page $page; public string|null $title = null; public string|null $subtitle = null; public string|null $image = null; public bool $bg = true;}