initial devcontainer setup

This commit is contained in:
Jeff Clement 2025-07-18 23:12:35 +00:00
commit b9b7aa6a08
Signed by: jeff
GPG key ID: 3BCB43A3F0E1D7DA
14 changed files with 411 additions and 0 deletions

View file

@ -0,0 +1,38 @@
<!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>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
font-size: 50px;
color: #333;
}
p {
font-size: 20px;
color: #666;
}
</style>
<meta http-equiv="refresh" content="2">
</head>
<body>
<div class="container">
<h1>Service Unavailable</h1>
<p>The service is currently unavailable.</p>
<p>This page will refresh every 2 seconds.</p>
</div>
</body>
</html>