blob: 69023f6c65243f3d1c78c81c075595c41b7d641d [file] [log] [blame]
<?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('/', name: 'leaf_home')]
public function index(): Response {
return $this->render('home/index.html.twig');
}
}