Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into SKIL-541
Browse files Browse the repository at this point in the history
  • Loading branch information
hmnur3636 committed Nov 12, 2024
2 parents bf59867 + c359d14 commit ce344ba
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions AWS/maintenance.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkillBuilder - System Maintenance</title>
<!-- Favicon for various platforms -->
<link rel="icon" type="image/svg+xml" href="/FrontEndReact/public/sbLogo.png">
<link rel="icon" type="image/png" sizes="32x32" href="/FrontEndReact/public/sbLogo.png">
<link rel="icon" type="image/png" sizes="16x16" href="/FrontEndReact/public/sbLogo.png">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
}
.container {
text-align: center;
padding: 2rem;
max-width: 600px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo {
width: 120px;
height: auto;
margin-bottom: 2rem;
}
h1 {
color: #2c5282;
margin-bottom: 1rem;
}
p {
color: #4a5568;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.status-badge {
background-color: #2c5282;
color: white;
padding: 0.5rem 1rem;
border-radius: 9999px;
display: inline-block;
font-size: 0.875rem;
}
</style>
</head>
<body>
<div class="container">
<img src="/FrontEndReact/public/sbLogo.png" alt="SkillBuilder Logo" class="logo">
<h1>System Maintenance</h1>
<p>We're currently performing scheduled maintenance to improve your SkillBuilder experience. Our team is working to bring the system back online as quickly as possible.</p>
<p>Thank you for your patience.</p>
<div class="status-badge">System Status: Maintenance in Progress</div>
</div>
</body>
</html>

0 comments on commit ce344ba

Please sign in to comment.