2025-01-09 10:21:26 +03:30
|
|
|
{# templates/bundles/TwigBundle/Exception/error404.html.twig #}
|
|
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
{% block title %}صفحه یافت نشد!{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
2025-09-07 19:23:29 +03:30
|
|
|
<div class="min-h-screen flex items-center justify-center bg-gray-50 px-4 sm:px-6 lg:px-8">
|
|
|
|
|
<div class="max-w-md w-full space-y-8 text-center">
|
|
|
|
|
<div>
|
|
|
|
|
<img class="mx-auto h-64 w-auto object-contain" src="{{asset('img/404.webp')}}" alt="صفحه یافت نشد"/>
|
|
|
|
|
<h1 class="mt-6 text-4xl font-bold text-blue-600">صفحه یافت نشد!</h1>
|
|
|
|
|
<p class="mt-4 text-lg text-gray-600 leading-relaxed">
|
|
|
|
|
به نظر میرسد صفحهای که به دنبال آن هستید حذف یا منتقل شده و یا اینکه از قبل وجود نداشته است.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<a href="{{path('app_home')}}"
|
|
|
|
|
class="group relative w-full flex justify-center py-3 px-4 border border-transparent text-lg font-medium rounded-full text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition duration-150 ease-in-out">
|
|
|
|
|
صفحه نخست
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2025-01-09 10:21:26 +03:30
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|