anya-core 1.2.0

Enterprise-grade Bitcoin Infrastructure Platform
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 - Page Not Found</title>
    <meta name="description" content="404 error page - Page not found">
    <link rel="stylesheet" href="assets/css/styles.css">
    <link rel="icon" type="image/svg+xml" href="assets/images/favicon.svg">
    <style>
        .error-container {
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        .error-code {
            font-size: 6rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .error-message {
            font-size: 1.5rem;
            color: var(--text-color);
            margin-bottom: 2rem;
        }

        .error-description {
            color: var(--light-text);
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .error-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .container {
            margin: 10px auto;
            max-width: 600px;
            text-align: center;
        }

        h1 {
            margin: 30px 0;
            font-size: 4em;
            line-height: 1;
            letter-spacing: -1px;
        }
    </style>
</head>
<body>
    <header>
        <nav>
            <div class="logo">
                <img src="assets/images/logo.svg" alt="Anya Logo">
                <span>Anya</span>
            </div>
            <ul>
                <li><a href="pages/getting-started.html">Getting Started</a></li>
                <li><a href="pages/features.html">Features</a></li>
                <li><a href="pages/documentation.html">Documentation</a></li>
                <li><a href="https://github.com/anya-org/anya-core" target="_blank">GitHub</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <div class="container">
            <h1>404</h1>
            <p><strong>Page not found</strong></p>
            <p>The requested page could not be found. Please check the URL or return to the <a href="index.html">homepage</a>.</p>
            
            <h2>Popular Documentation Pages:</h2>
            <ul style="list-style: none; padding: 0;">
                <li><a href="pages/documentation.html">Architecture Overview</a></li>
                <li><a href="pages/documentation.html">API Documentation</a></li>
                <li><a href="pages/getting-started.html">Development Guide</a></li>
                <li><a href="https://github.com/anya-org/anya-core/blob/main/CONTRIBUTING.md" target="_blank">Contributing Guidelines</a></li>
            </ul>
        </div>
    </main>

    <footer>
        <div class="footer-content">
            <div class="footer-section">
                <h4>Documentation</h4>
                <ul>
                    <li><a href="pages/getting-started.html">Getting Started</a></li>
                    <li><a href="pages/documentation.html">API Reference</a></li>
                    <li><a href="pages/features.html">Features</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h4>Community</h4>
                <ul>
                    <li><a href="https://github.com/anya-org/anya-core">GitHub</a></li>
                    <li><a href="https://github.com/anya-org/anya-core/issues">Issue Tracker</a></li>
                </ul>
            </div>
        </div>
        <div class="footer-bottom">
            <p>&copy; 2025 Anya Project. All rights reserved.</p>
        </div>
    </footer>

    <script src="assets/js/main.js"></script>
</body>
</html>