<?php
declare(strict_types=1);
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class AboutUsController extends AbstractController
{
/**
* @Route("/about-us", name="about_us_index")
*/
public function index(): Response
{
return $this->render('page/about_us/index.html.twig');
}
}