<?php
namespace App\Controller\Front;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class ExpertiseController extends AbstractController
{
public function skills(): Response
{
return $this->render('front/expertise/skills.html.twig');
}
public function commitments(): Response
{
return $this->render('front/expertise/commitments.html.twig');
}
}