Major refactoring to include frontend...

This commit is contained in:
2025-03-28 16:02:03 +01:00
parent 4edf1516dd
commit bda0b74cbd
94 changed files with 91073 additions and 436 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class HomeController extends AbstractController
{
#[Route('/', name: 'app_home')]
public function index(): Response
{
return $this->render('home/index.html.twig', [
'controller_name' => 'HomeController',
]);
}
}