WIP: Implement stuff

This commit is contained in:
Björn Fromme
2023-10-03 18:05:12 +02:00
parent 25a016a02b
commit dec8feedf2
10 changed files with 53 additions and 10 deletions
@@ -0,0 +1,16 @@
<?php
namespace App\Controller\Teamer;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class ContactController extends AbstractController
{
#[Route('/teamer/contact', name: 'app_teamer_contact')]
public function index(): Response
{
return $this->render('teamer/contact.html.twig');
}
}