145 lines
5.2 KiB
HTML
145 lines
5.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>JAESWIFT // DEPLOYMENTS</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<link rel="stylesheet" href="/css/section.css">
|
|
<style>
|
|
.deploy-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 1.5rem;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: 0 2rem 3rem;
|
|
}
|
|
@media (max-width: 900px) { .deploy-grid { grid-template-columns: repeat(2, 1fr); } }
|
|
@media (max-width: 600px) { .deploy-grid { grid-template-columns: 1fr; } }
|
|
|
|
.deploy-card {
|
|
background: rgba(16, 16, 16, 0.85);
|
|
border: 1px solid var(--border);
|
|
border-left: 3px solid rgba(255, 170, 0, 0.6);
|
|
padding: 1.5rem;
|
|
cursor: pointer;
|
|
transition: all 0.25s ease;
|
|
text-decoration: none;
|
|
display: block;
|
|
}
|
|
.deploy-card:hover {
|
|
border-left-color: var(--mil-red);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 20px rgba(255, 0, 0, 0.08);
|
|
background: rgba(20, 20, 20, 0.95);
|
|
}
|
|
.deploy-card-status {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 0.6rem;
|
|
color: #00cc44;
|
|
letter-spacing: 2px;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
.deploy-card-title {
|
|
font-family: 'Orbitron', monospace;
|
|
font-size: 0.85rem;
|
|
color: #ffffff;
|
|
letter-spacing: 2px;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.deploy-card-desc {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 0.65rem;
|
|
color: rgba(255, 255, 255, 0.45);
|
|
line-height: 1.5;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.deploy-card-tags {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.deploy-tag {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 0.55rem;
|
|
color: rgba(255, 170, 0, 0.7);
|
|
background: rgba(255, 170, 0, 0.08);
|
|
border: 1px solid rgba(255, 170, 0, 0.15);
|
|
padding: 0.2rem 0.5rem;
|
|
letter-spacing: 1px;
|
|
}
|
|
.deploy-card-url {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 0.55rem;
|
|
color: rgba(255, 255, 255, 0.25);
|
|
margin-top: 0.75rem;
|
|
letter-spacing: 1px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="scanline-overlay"></div>
|
|
<div class="grid-bg"></div>
|
|
|
|
<nav class="nav-main" id="navbar">
|
|
<div class="nav-container">
|
|
<a href="/" class="nav-logo">
|
|
<span class="logo-bracket">[</span> JAE <span class="logo-bracket">]</span>
|
|
</a>
|
|
<button class="nav-toggle" id="navToggle" aria-label="Menu">
|
|
<span></span><span></span><span></span>
|
|
</button>
|
|
<ul class="nav-menu" id="navMenu"></ul>
|
|
<div class="nav-status">
|
|
<span class="nav-clock" id="navClock"></span>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="breadcrumb">
|
|
<a href="/">HOME</a>
|
|
<span class="separator">/</span>
|
|
<a href="/armoury">ARMOURY</a>
|
|
<span class="separator">/</span>
|
|
<span class="current">DEPLOYMENTS</span>
|
|
</div>
|
|
|
|
<section class="section-header" style="padding-top: calc(var(--nav-height) + 1.5rem);">
|
|
<div class="section-header-label">ARMOURY // WEAPONS & EQUIPMENT</div>
|
|
<h1 class="section-header-title">DEPLOYMENTS</h1>
|
|
<p class="section-header-sub">> Operational systems built by JAESWIFT — live, tested, and in the field.</p>
|
|
</section>
|
|
|
|
<div class="deploy-grid">
|
|
<a href="/win95" class="deploy-card">
|
|
<div class="deploy-card-status">● ACTIVE</div>
|
|
<div class="deploy-card-title">WIN95</div>
|
|
<div class="deploy-card-desc">Windows 95 desktop environment recreated in the browser. Fully interactive retro OS simulation.</div>
|
|
<div class="deploy-card-tags">
|
|
<span class="deploy-tag">WEB APP</span>
|
|
<span class="deploy-tag">RETRO</span>
|
|
<span class="deploy-tag">INTERACTIVE</span>
|
|
</div>
|
|
<div class="deploy-card-url">jaeswift.xyz/win95</div>
|
|
</a>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<div class="footer-container">
|
|
<div class="footer-left">
|
|
<span class="footer-logo">[JAE]</span>
|
|
<span class="footer-copy">© 2026 JAESWIFT.XYZ</span>
|
|
</div>
|
|
<div class="footer-right">
|
|
<span class="footer-signal">SIGNAL ████<span class="signal-flicker">█</span></span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="/js/nav.js"></script>
|
|
<script src="/js/clock.js"></script>
|
|
</body>
|
|
</html>
|