<?php
namespace App\Controller\Home;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class HomeController extends AbstractController
{
#[Route(path: '/', name: 'app_home')]
public function home()
{
return $this->render('appHome.html.twig');
}
}