This commit is contained in:
Frank
2026-01-02 20:27:56 +01:00
parent 3b071eec9b
commit 18821e2463
43 changed files with 12259 additions and 2910 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace App\Website\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
final class HomeController extends AbstractController
{
#[Route(path: '', name: 'website_home')]
public function index(): Response
{
return $this->render(
'website/home/index.html.twig');
}
}