<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class StaticContentController extends AbstractController
{
#[Route('/support', name: 'app_support')]
public function index(): Response
{
return $this->render('support/index.html.twig', [
'controller_name' => 'StaticContentController',
]);
}
#[Route('/support/faq', name: 'app_support_faq')]
public function faq(): Response
{
return $this->render('support/faq.html.twig', [
'controller_name' => 'StaticContentController',
]);
}
}