blob: 03278378d29c3f8a0978490350c4f13a892d846c [file] [log] [blame]
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class AboutController extends AbstractController
{
#[Route('/about', name: 'leaf_about')]
public function index(): Response
{
return $this->render('about/index.html.twig');
}
}