maker_web 0.1.0

High-performance, zero-allocation HTTP server for microservices
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>maker_web - Support</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #24292e;
            background: green;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .container {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            text-align: center;
            max-width: 600px;
            margin: 2rem;
        }
        
        .logo {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        h1 {
            color: #2d3748;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
        }
        
        .message {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #4a5568;
            line-height: 1.8;
        }
        
        .github-link {
            display: inline-block;
            background: #24292e;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s, box-shadow 0.2s;
            margin: 0.5rem;
        }
        
        .github-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e5e7eb;
        }
        
        .stars {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }
        
        .heart {
            color: #e53e3e;
            animation: pulse 1.5s infinite;
        }
        
        .copyright {
            font-size: 0.9rem;
            color: #9ca3af;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">🚀</div>
        <h1>maker_web</h1>
        
        <div class="message">
            <p>Currently, there's no way to support me financially, but you can:</p>
            <p><strong>Star the project on GitHub</strong></p>
            <p>👥 <strong>Recommend it to your friends</strong></p>
            <p>Right now, this would be the best support for me 😊</p>
        </div>
        
        <a href="https://crates.io/crates/maker_web" class="github-link" target="_blank">
            📦 Download from crates.io
        </a>

        <a href="https://github.com/AmakeSashaDev/maker_web" class="github-link" target="_blank">
            🌟 Star on GitHub
        </a>
        
        <a href="https://github.com/AmakeSashaDev/maker_web" class="github-link" target="_blank">
            📂 View Repository
        </a>
        
        <div class="footer">
            <div class="stars">
                Made with <span class="heart">❤️</span> for the Rust community
            </div>
            <div class="copyright">
                © 2024 AmakeSashaDev. All rights reserved.
            </div>
        </div>
    </div>
</body>
</html>