Restyle footer and add FAQ

This commit is contained in:
Jannis Portmann 2022-01-19 12:49:07 +01:00
parent 9d640b9fd3
commit ed481d9083
5 changed files with 141 additions and 80 deletions

View file

@ -21,4 +21,10 @@ class AppController extends AbstractController
{
return $this->render('app/imprint.html.twig');
}
#[Route('/faq', name: 'faq')]
public function faq(): Response
{
return $this->render('app/faq.html.twig');
}
}