<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class EntryPointController extends AbstractController{ /** * @Route("/entry/point", name="entry_point") */ public function index(): Response { return $this->render('entry_point/index.html.twig'); }}