<?phpnamespace  App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class NotreEntrepriseController extends AbstractController{    #[Route('notre-entreprise', name:"notreEntreprise")]    public function index()    {        return $this->render('pages/notreEntreprise.html.twig');    }}