This commit is contained in:
2022-10-15 22:24:22 +02:00
parent 0057bbcd96
commit 85125c7d6b
19 changed files with 299 additions and 27 deletions

View File

@ -0,0 +1,16 @@
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class FrontController extends AbstractController
{
#[Route("/", name: "app_front")]
public function index(Request $request): Response
{
return $this->render('front/index.html.twig');
}
}