-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into SKIL-541
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |