<?php
declare(strict_types=1);
/*
* ImmoBay - BAUR Immobilien
*
* @copyright Copyright (c) 2008-2022, 47GradNord - Agentur für Internetlösungen
* @author 47GradNord - Agentur für Internetlösungen <info@47gradnord.de>
*/
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class ContentController extends AbstractAppController
{
/**
* @Route("/faq", name="content_faq", methods={"GET"} )
*/
public function index(): Response
{
return $this->render('content/faq.html.twig', []);
}
/**
* @Route("/termsconditions", name="content_termsconditions", methods={"GET"} )
*/
public function termsConditions(): Response
{
return $this->render('content/terms-conditions.html.twig', []);
}
/**
* @Route("/privacy", name="content_privacy", methods={"GET"} )
*/
public function privacy(): Response
{
return $this->render('content/privacy.html.twig', []);
}
/**
* @Route("/imprint", name="content_imprint", methods={"GET"} )
*/
public function imprint(): Response
{
return $this->render('content/imprint.html.twig', []);
}
}