<?php
namespace App\Controller\Guest;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class GuestController extends AbstractController
{
/**
* @Route("/", name="home")
*/
public function index(): Response
{
return $this->render('guest/index.html.twig');
}
/**
* @Route("/polityka-prywatnosci", name="privacy")
*/
public function privacy(): Response
{
return $this->render('guest/privacy.html.twig');
}
/**
* @Route("/regulamin", name="terms")
*/
public function terms(): Response
{
return $this->render('guest/terms.html.twig');
}
}