<?phpnamespace App\Controller\Public;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class WelcomeController extends AbstractController{ #[Route('/', name: 'public_welcome_index')] public function index(): Response { return $this->render('public/welcome/index.html.twig'); }}