<?php
namespace App\Controller\Web;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class DefaultController extends AbstractController
{
/**
* @Route("/", name="app_web_default")
*/
public function index(): Response
{
//return $this->render('app/default/comingSoon.html.twig');
return $this->render('web/default/index.html.twig');
}
/**
* @Route("/privacy-policy", name="privacy_policy")
*/
public function privacyPolicy(){
return $this->render('web/default/privacyPolicy.html.twig', ['privacyPolicy' => true]);
}
}