webdlh-net/Views/Shared/NotFound.cshtml

42 lines
2.1 KiB
Plaintext

@{
ViewData["Title"] = "Page Not Found";
}
<section class="container mx-auto px-4 py-8 max-w-6xl">
<div class="min-h-[60vh] flex items-center justify-center">
<div class="text-center space-y-6">
<div class="relative">
<h1 class="text-9xl font-black text-gray-200 select-none">404</h1>
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-2xl font-bold text-gray-700 bg-white px-4 py-2 rounded-lg shadow-lg">
Halaman Tidak Ditemukan
</div>
</div>
</div>
<div class="space-y-4">
<p class="text-lg text-gray-600 max-w-md mx-auto">
Ups! Sepertinya halaman yang Anda cari telah berpindah ke TPST atau mungkin sudah di Recycle 🔃
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
<a href="@Url.Action("Index", "Home")"
class="inline-flex items-center px-6 py-3 bg-orange-500 text-white font-semibold rounded-lg hover:from-orange-600 transform hover:scale-105 transition-all duration-200 shadow-lg">
<svg class="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"></path>
</svg>
Kembali ke Beranda
</a>
</div>
</div>
<div class="mt-8">
<div class="inline-flex items-center space-x-2 text-sm text-gray-500">
<div class="w-2 h-2 bg-red-400 rounded-full animate-pulse"></div>
<span>Error Code: 404</span>
</div>
</div>
</div>
</div>
</section>