src/Controller/AboutUsController.php line 16

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Controller;
  4. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\Routing\Annotation\Route;
  7. class AboutUsController extends AbstractController
  8. {
  9.     /**
  10.      * @Route("/about-us", name="about_us_index")
  11.      */
  12.     public function index(): Response
  13.     {
  14.         return $this->render('page/about_us/index.html.twig');
  15.     }
  16. }