redesign 404 page
Some checks failed
PHP Composer / build (push) Has been cancelled

This commit is contained in:
Hesabix 2025-09-07 19:23:29 +03:30
parent 0135a3da81
commit c6c58bef03

View file

@ -3,14 +3,21 @@
{% block title %}صفحه یافت نشد!{% endblock %} {% block title %}صفحه یافت نشد!{% endblock %}
{% block body %} {% block body %}
<div class="container"> <div class="min-h-screen flex items-center justify-center bg-gray-50 px-4 sm:px-6 lg:px-8">
<div class="row"> <div class="max-w-md w-full space-y-8 text-center">
<div class="col-12 justify-content-center text-center"> <div>
<img class="img-fluid" src="{{asset('img/404.webp')}}"/> <img class="mx-auto h-64 w-auto object-contain" src="{{asset('img/404.webp')}}" alt="صفحه یافت نشد"/>
<h1 class="text-primary mt-3">صفحه یافت نشد!</h1> <h1 class="mt-6 text-4xl font-bold text-blue-600">صفحه یافت نشد!</h1>
<p>به نظر می‌رسد صفحه‌ای که به دنبال آن هستید حذف یا منتقل شده و یا اینکه از قبل وجود نداشته است.</p> <p class="mt-4 text-lg text-gray-600 leading-relaxed">
<a class="btn btn-lg btn-primary rounded-5" href="{{path('app_home')}}">صفحه نخست</a> به نظر می‌رسد صفحه‌ای که به دنبال آن هستید حذف یا منتقل شده و یا اینکه از قبل وجود نداشته است.
</div> </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>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}