<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class AcceuilController extends AbstractController{ #[Route('/', name: 'acceuil')] public function index(): Response { return $this->render('acceuil/index.html.twig'); }}