src/Controller/AboutController.php line 24

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class AboutController extends AbstractController
  7. {
  8.     /**
  9.      * JobsREADY en bref / Pourquoi JobsREADY
  10.      */
  11.     #[Route('/a-propos'name'about')]
  12.     public function about(): Response
  13.     {
  14.         return $this->render('about/about.html.twig');
  15.     }
  16.     /**
  17.      * Vision JobsREADY
  18.      */
  19.     #[Route('/vision'name'vision')]
  20.     public function vision(): Response
  21.     {
  22.         return $this->render('about/vision.html.twig');
  23.     }
  24.     /**
  25.      * JobsREADY & NET2ALL
  26.      */
  27.     #[Route('/jobsready-net2all'name'ecosystem')]
  28.     public function ecosystem(): Response
  29.     {
  30.         return $this->render('about/ecosystem.html.twig');
  31.     }
  32. }