src/Controller/AboutController.php line 14

Open in your IDE?
  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 AboutController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/about", name="about", methods={"GET"})
  10.      */
  11.     public function index(): Response
  12.     {
  13.         $description = <<<TEXT
  14. CogniEdu is a proprietary AI-based IP platform developed exclusively for universities and higher education institutions. Harness the power of advanced AI for Business Intelligence (BI), Financial Analysis, Enrollment Analytics, and Revenue Forecasting.
  15. Designed for agility, real-time decision-making, and strategic planning, CogniEdu delivers tailored insights based on your institution's data and performance trends. CogniEdu is a cutting-edge AI platform tailored specifically for the higher education sector. Developed by a team of AI experts and education specialists, our proprietary technology transforms raw institutional data into actionable intelligence.
  16. Whether you're managing tactical operations, overseeing finances, or forecasting revenue, CogniEdu provides the tools for informed, data-driven decisions. Our platform integrates seamlessly with existing systems, ensuring minimal disruption and maximum impact.
  17. Mission: To revolutionize higher education management through AI innovation.
  18. Vision: Empower every institution with real-time, predictive analytics for sustainable growth.
  19. Values: Accuracy, Agility, Security, and Customization.
  20. TEXT;
  21.         return $this->render('about/index.html.twig', [
  22.             'description' => $description,
  23.         ]);
  24.     }
  25. }