<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
class AboutUsController extends AbstractController
{
public function index(): Response
{
return $this->render('AboutUs/index.html.twig');
}
}