src/Controller/ServicesController.php line 12

  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class ServicesController extends AbstractController
  7. {
  8.     #[Route('/services/seo'name'app_services_seo')]
  9.     public function seo(): Response
  10.     {
  11.         $data = [
  12.             'pageTitle' => 'SEO Services in Wales | Little Welsh Hosting Company',
  13.             'pageDescription' => '',
  14.         ];
  15.         return $this->render('services/seo.html.twig', [
  16.             'data' => $data,
  17.         ]);
  18.     }
  19.     #[Route('/services/social-media-marketing'name'app_services_smm')]
  20.     public function smm(): Response
  21.     {
  22.         $data = [
  23.             'pageTitle' => 'Social Media Marketing in Wales | Little Welsh Hosting Company',
  24.             'pageDescription' => '',
  25.         ];
  26.         return $this->render('services/smm.html.twig', [
  27.             'data' => $data,
  28.         ]);
  29.     }
  30.     #[Route('/services/online-security-services'name'app_services_security')]
  31.     public function security(): Response
  32.     {
  33.         $data = [
  34.             'pageTitle' => '',
  35.             'pageDescription' => '',
  36.         ];
  37.         return $this->render('services/security.html.twig', [
  38.             'data' => $data,
  39.         ]);
  40.     }
  41. }