<?php
namespace App\Controller;
use App\Entity\User;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Doctrine\Persistence\ManagerRegistry;
class DefaultController extends AbstractController{
/**
* @Route("/", name="homepage")
*/
public function index(): Response {
return $this->render('default/index.html.twig', []);
}
}