Skip to content

Commit

Permalink
Make it so that it has an awesome (not boring) 503 screen
Browse files Browse the repository at this point in the history
  • Loading branch information
kokofixcomputers authored Oct 13, 2024
1 parent ac5bd71 commit cb2f5c6
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions resources/views/errors/503.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Unavailable</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
font-family: 'Roboto', sans-serif;
margin: 0;
}
.container {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
max-width: 400px;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
p {
font-size: 16px;
color: #555;
}
img {
width: 100%;
height: auto;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>Ongoing Maintenance</h1>
<p>We are currently undergoing maintenance and cannot be accessed.</p>
<p>Please check back and try again.</p>
</div>
</body>
</html>

0 comments on commit cb2f5c6

Please sign in to comment.