<?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="home")
*/
public function index(): Response
{
return $this->render('home/index.html.twig', [
]);
}
/**
* @Route("/presentation", name="presentation")
*/
public function presentation(): Response
{
return $this->render('home/presentation.html.twig', [
]);
}
}