2026-06-02 01:04:08 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Controller;
|
|
|
|
|
|
2026-06-02 18:46:00 +02:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
2026-06-02 01:04:08 +02:00
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
|
|
2026-06-02 18:46:00 +02:00
|
|
|
class IndexController extends AbstractController
|
2026-06-02 01:04:08 +02:00
|
|
|
{
|
|
|
|
|
#[Route('/')]
|
|
|
|
|
public function index(): Response
|
|
|
|
|
{
|
2026-06-02 18:46:00 +02:00
|
|
|
return $this->render('index/page.html.twig');
|
2026-06-02 01:04:08 +02:00
|
|
|
}
|
|
|
|
|
}
|