laforceit-portfolio/construction.html

170 lines
5.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Construction | LaForceIT</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
.construction-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
position: relative;
overflow: hidden;
}
.construction-content {
text-align: center;
z-index: 1;
padding: 2rem;
max-width: 800px;
}
.construction-title {
font-size: 3rem;
color: #00ff9d;
margin-bottom: 1rem;
text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
font-family: 'JetBrains Mono', monospace;
}
.construction-subtitle {
font-size: 1.5rem;
color: #ffffff;
margin-bottom: 2rem;
opacity: 0.8;
}
.construction-status {
background: rgba(0, 255, 157, 0.1);
border: 1px solid rgba(0, 255, 157, 0.3);
padding: 1rem;
border-radius: 8px;
margin-bottom: 2rem;
font-family: 'JetBrains Mono', monospace;
}
.status-line {
color: #00ff9d;
margin: 0.5rem 0;
text-align: left;
}
.status-line::before {
content: '> ';
color: #00ff9d;
}
.construction-progress {
width: 100%;
height: 4px;
background: rgba(255, 255, 255, 0.1);
border-radius: 2px;
margin: 2rem 0;
overflow: hidden;
}
.progress-bar {
height: 100%;
background: linear-gradient(90deg, #00ff9d, #00b8ff);
width: 0;
animation: progress 2s ease-in-out infinite;
}
@keyframes progress {
0% { width: 0; }
50% { width: 100%; }
100% { width: 0; }
}
.construction-back {
color: #ffffff;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: color 0.3s ease;
}
.construction-back:hover {
color: #00ff9d;
}
.binary-rain {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
opacity: 0.1;
}
</style>
</head>
<body>
<div class="construction-container">
<div class="binary-rain" id="binary-rain"></div>
<div class="construction-content">
<h1 class="construction-title">UNDER CONSTRUCTION</h1>
<p class="construction-subtitle">This service is currently being deployed and configured</p>
<div class="construction-status">
<div class="status-line">Initializing deployment sequence...</div>
<div class="status-line">Configuring infrastructure components...</div>
<div class="status-line">Deploying service containers...</div>
<div class="status-line">Establishing secure connections...</div>
<div class="status-line">Optimizing performance parameters...</div>
</div>
<div class="construction-progress">
<div class="progress-bar"></div>
</div>
<a href="https://laforceit.com" class="construction-back">
<i class="fas fa-arrow-left"></i>
Return to LaForceIT
</a>
</div>
</div>
<script>
// Create binary rain effect
const binaryRain = document.getElementById('binary-rain');
const chars = '01';
function createBinaryRain() {
const span = document.createElement('span');
span.textContent = chars.charAt(Math.floor(Math.random() * chars.length));
span.style.position = 'absolute';
span.style.left = Math.random() * 100 + '%';
span.style.top = '-20px';
span.style.color = '#00ff9d';
span.style.opacity = Math.random() * 0.5 + 0.5;
span.style.fontSize = Math.random() * 10 + 10 + 'px';
span.style.fontFamily = 'JetBrains Mono, monospace';
binaryRain.appendChild(span);
let pos = -20;
const fall = setInterval(() => {
pos += 2;
span.style.top = pos + 'px';
if (pos > window.innerHeight) {
clearInterval(fall);
span.remove();
}
}, 50);
}
setInterval(createBinaryRain, 100);
</script>
</body>
</html>