<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class HomeController extends AbstractController
{
#[Route('/', name: 'home')]
public function index(): Response
{
return $this->render('frontend/index.html.twig', [
'controller_name' => 'HomeController',
]);
}
#[Route('/about', name: 'about')]
public function about(): Response
{
return $this->render('frontend/about.html.twig', [
'controller_name' => 'HomeController',
]);
}
#[Route('/contact', name: 'contact')]
public function contact(): Response
{
return $this->render('frontend/contact.html.twig', [
'controller_name' => 'HomeController',
]);
}
#[Route('/mentions-legales', name: 'mentionsLegales')]
public function mentionsLegales(): Response
{
return $this->render('frontend/mentions_legales.html.twig', [
'controller_name' => 'HomeController',
]);
}
#[Route('/vie-privee', name: 'viePrivee')]
public function viePrivee(): Response
{
return $this->render('frontend/vie_privee.html.twig', [
'controller_name' => 'HomeController',
]);
}
}