blob: cc02724ce4b34ce2f527d613a4e25057f6fa5a4a [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 CommunityController extends AbstractController
{
#[Route('/community', name: 'leaf_community')]
public function index(): Response
{
return $this->render('community/index.html.twig');
}
}