windjammer-ui 0.3.6

Cross-platform UI framework for Windjammer (Web, Desktop, Mobile)
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Windjammer Counter Example</title>
    <style>
        body {
            margin: 0;
            padding: 20px;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        #app {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            text-align: center;
        }
        
        .counter {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        h1 {
            margin: 0;
            font-size: 2.5em;
        }
        
        button {
            transition: transform 0.1s, background 0.2s;
        }
        
        button:hover {
            background: #45a049 !important;
            transform: scale(1.05);
        }
        
        button:active {
            transform: scale(0.95);
        }
    </style>
</head>
<body>
    <div id="app">
        <p>Loading Windjammer UI...</p>
    </div>
    
    <script type="module">
        // This will be filled in once we build the WASM
        // For now, this is a placeholder
        console.log('Windjammer UI Counter - Ready to load WASM');
    </script>
</body>
</html>