<?php// src/Controller/NotFoundController.phpnamespace App\Controller;use Symfony\Component\Routing\Annotation\Route;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;class NotFoundController extends AbstractController{ #[Route(path:'/not_found', name:'not_found_page')] public function index() { return $this->render('not_found.html.twig'); }}