<?php
declare(strict_types=1);
namespace App\Controller\Blo;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
/**
* Pages statiques : Contact, FAQ, CGU, Confidentialité.
*/
#[Route('')]
class StaticController extends AbstractController
{
#[Route('/contact', name: 'blo_contact', methods: ['GET'])]
public function contact(): Response
{
return $this->render('blo/static/contact.html.twig');
}
#[Route('/faq', name: 'blo_faq', methods: ['GET'])]
public function faq(): Response
{
return $this->render('blo/static/faq.html.twig');
}
#[Route('/cgu', name: 'blo_cgu', methods: ['GET'])]
public function cgu(): Response
{
return $this->render('blo/static/cgu.html.twig');
}
#[Route('/confidentialite', name: 'blo_confidentialite', methods: ['GET'])]
public function confidentialite(): Response
{
return $this->render('blo/static/confidentialite.html.twig');
}
}