<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
class AppController extends AbstractController
{
public function index(): Response
{
return $this->render('app/index.html.twig', [
]);
}
public function quiSommesNous(): Response
{
return $this->render('app/qui_sommes_nous.html.twig');
}
public function coffresTarifs(): Response
{
return $this->render('app/coffres_tarifs.html.twig');
}
public function assurancesEtSecurite(): Response
{
return $this->render('app/assurances_et_securite.html.twig');
}
public function agences(): Response
{
return $this->render('app/agences.html.twig');
}
public function faq(): Response
{
return $this->render('app/faq.html.twig');
}
public function priseDeRdv(): Response
{
return $this->render('app/prise_de_rdv.html.twig');
}
public function contact(): Response
{
return $this->render('app/contact.html.twig');
}
public function montionsLegales(): Response
{
return $this->render('app/mentions_legales.html.twig');
}
public function cgps(): Response
{
return $this->render('app/cgps.html.twig');
}
public function login(): Response
{
return $this->render('app/login.html.twig');
}
public function register(): Response
{
return $this->render('app/register.html.twig');
}
public function password(): Response
{
return $this->render('app/password.html.twig');
}
}