<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
use SendGrid\Mail\Mail;
class PagesController extends AbstractController
{
#[Route(path: [
'en_US' => '/',
'es_CO' => '/inicio',
'de_DE' => '/startseite',
], name: 'app_pages')]
public function index(): Response
{
return $this->render('pages/index.html.twig', [
]);
}
}