<?php
namespace 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');
}
#[Route('/mentions-legales', name: 'app_mentions_legales')]
public function mentionsLegales(): Response
{
return $this->render('page/mentions_legales.html.twig');
}
}