<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class PageController extends AbstractController{ #[Route('/politique-confidentialite', name: 'app_politique_confidentialite')] public function politiqueConfidentialite(): Response { return $this->render('page/politique_confidentialite.html.twig'); }}