pintu2/resources/views/errors/404.blade.php
2024-03-30 19:43:46 +07:00

24 lines
873 B
PHP

<!doctype html>
<html>
<head>
<title>Under Maintenance</title>
<meta charset="utf-8"/>
<meta name="robots" content="noindex"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body { text-align: center; padding: 20px; font: 20px Helvetica, sans-serif; color: #efe8e8; }
@media (min-width: 768px){
body{ padding-top: 150px; }
}
h1 { font-size: 42px; }
article { display: block; text-align: left; max-width: 900px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #efe8e8; text-decoration: none; }
</style>
</head>
<body bgcolor="2e2929">
<article>
<h1>Ups. Laman yang anda cari tidak ditemukan, silahkan Kembali ke Laman Utama dengan <a href="{{route('laman-awal')}}">Klik Disini</a></h1>
</article>
</body>
</html>