<?php
namespace App\Twig\Components;
use App\Entity\Page;
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
#[AsTwigComponent('PageHero')]
class PageHero
{
public Page|null $page = null;
public string|null $title = null;
public string|null $subtitle = null;
}