<?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(path: '/landing-flashcode', name: 'landing-flash-code')]
public function landingPage(): Response
{
return $this->render('landing-flash-code.html.twig');
}
#[Route(path: '/cgu', name: 'cgu')]
public function cgu(): Response
{
return $this->render('Cgu/index.html.twig');
}
}