<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class BusinessStrategyController extends AbstractController
{
/**
* @Route("/business-strategy", name="business_strategy_route")
* @return Response
*/
public function aboutAction(): Response
{
return $this->render('investor-relations/business-strategy.html.twig');
}
}