<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class AboutController extends AbstractController
{
/**
* JobsREADY en bref / Pourquoi JobsREADY
*/
#[Route('/a-propos', name: 'about')]
public function about(): Response
{
return $this->render('about/about.html.twig');
}
/**
* Vision JobsREADY
*/
#[Route('/vision', name: 'vision')]
public function vision(): Response
{
return $this->render('about/vision.html.twig');
}
/**
* JobsREADY & NET2ALL
*/
#[Route('/jobsready-net2all', name: 'ecosystem')]
public function ecosystem(): Response
{
return $this->render('about/ecosystem.html.twig');
}
}