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