CmdForge/index.html

33 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CmdForge Documentation</title>
<style>
body { background: #1a1a2e; color: #eaeaea; font-family: sans-serif; padding: 2rem; }
.container { max-width: 800px; margin: 0 auto; }
h1 { text-align: center; margin-bottom: 2rem; }
.nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.nav a { background: #16213e; color: #eaeaea; text-decoration: none; padding: 1rem 1.5rem; border-radius: 8px; border: 1px solid #0f3460; flex: 1; min-width: 200px; }
.nav a:hover { border-color: #e94560; }
.nav a h3 { color: #e94560; margin: 0 0 0.5rem 0; }
.nav a p { margin: 0; color: #a0a0a0; font-size: 0.9rem; }
footer { text-align: center; margin-top: 3rem; color: #a0a0a0; }
footer a { color: #e94560; }
</style>
</head>
<body>
<div class="container">
<h1>CmdForge</h1>
<p style="text-align: center; color: #a0a0a0;">Documentation</p>
<nav class="nav">
<a href="overview.html"><h3>Overview</h3><p>Introduction and key features</p></a>
<a href="architecture.html"><h3>Architecture</h3><p>Technical design and structure</p></a>
</nav>
<footer>
<a href="https://gitea.brrd.tech/rob/CmdForge">View Source on Gitea</a>
</footer>
</div>
</body>
</html>