Skip to content

Commit

Permalink
add service unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
billalxcode committed Nov 4, 2023
1 parent 3a11e34 commit f9363b6
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions resources/views/errors/503.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>{{ config('app.name') ?? 'PintarNet' }}</title>
<!-- CSS files -->
<link href="{{ asset('assets/css/tabler.min.css?1684106062') }}" rel="stylesheet" />
<style>
@import url('https://rsms.me/inter/inter.css');
:root {
--tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
}
body {
font-feature-settings: "cv03", "cv04", "cv11";
}
</style>
</head>

<body>
<div class="container h-100">
<div class="row h-100 justify-content-center align-items-center">
<div class="col-12">
<h1>503 Service Unavailable</h1>
<p>Saat ini layanan tidak tersedia, tunggu beberapa saat</p>
</div>
</div>
</div>
@stack('modals')
@stack('scripts')
</body>

</html>
2 changes: 1 addition & 1 deletion resources/views/layout/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>MasterApp</title>
<title>{{ config('app.name') ?? 'PintarNet' }}</title>
<!-- CSS files -->
<link href="{{ asset('assets/css/tabler.min.css?1684106062') }}" rel="stylesheet" />
<link href="{{ asset('assets/css/tabler-flags.min.css?1684106062') }}" rel="stylesheet" />
Expand Down

0 comments on commit f9363b6

Please sign in to comment.