<?php
namespace App\Controller;
use App\Form\ContactType;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
class FrontController extends AbstractController
{
/**
* @Route("/", name="front_landing")
*/
public function landing(Request $request)
{
return $this->render('front/landing.html.twig', array(
));
}
/**
* @Route("/notre-histoire", name="front_story")
*/
public function ourStory(Request $request)
{
return $this->render('front/ourStory.html.twig', array(
));
}
}