<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Twig\Environment;
class AboutController extends AbstractController
{
/**
* @Route("/about", name="about_page")
*/
public function about(Environment $twig): Response
{
return $this->render('pages/about.html.twig');
}
}