Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Pockit | Scalable Cloud Storage</title> | |
| <style> | |
| /* Reset & Base */ | |
| * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; } | |
| body { color: #fff; line-height: 1.6; overflow-x: hidden; } | |
| /* Stationary Background Layer */ | |
| .bg-layer { | |
| position: fixed; top: 0; left: 0; width: 100%; height: 100%; | |
| background-image: url(bg.jpg); | |
| background-size: cover; | |
| background-position: center; | |
| background-attachment: fixed; /* Keeps background stationary */ | |
| z-index: -1; | |
| } | |
| /* Layout Helpers */ | |
| .container { width: 90%; max-width: 1200px; margin: 0 auto; } | |
| .section-padding { padding: 100px 0; } | |
| /* Hero */ | |
| .hero { height: 100vh; display: flex; align-items: center; justify-content: space-between; gap: 50px; } | |
| .hero-text { flex: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.5); } | |
| .hero-text h1 { font-size: 5rem; line-height: 1; margin-bottom: 20px; } | |
| .hero-text p { font-size: 1.5rem; margin-bottom: 30px; color: #fff; } | |
| .btn { padding: 18px 40px; background: #fff; color: #000; border-radius: 8px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.3s; } | |
| .btn + .btn { margin-left: 12px; } | |
| .btn:hover { background: #ddd; } | |
| .hero-image { flex: 1; display: flex; justify-content: flex-end; } | |
| .hero-image img { width: 100%; max-width: 600px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.8); } | |
| /* Section Styling */ | |
| h2 { font-size: 3rem; margin-bottom: 60px; text-align: center; text-shadow: 0 2px 10px rgba(0,0,0,0.5); } | |
| .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } | |
| .card { background: rgba(0, 0, 0, 0.4); padding: 40px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); } | |
| .card h3 { margin-bottom: 15px; color: #fff; font-size: 1.5rem; } | |
| .card p { color: #eee; } | |
| /* Table Styling */ | |
| .comparison-wrapper { overflow-x: auto; } | |
| .comparison { width: 100%; border-collapse: collapse; margin-top: 30px; background: rgba(0, 0, 0, 0.4); border-radius: 16px; overflow: hidden; backdrop-filter: blur(10px); } | |
| .comparison th, .comparison td { padding: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: left; } | |
| .comparison th { color: #fff; font-weight: 600; } | |
| footer { padding: 50px 0; text-align: center; color: #fff; border-top: 1px solid rgba(255,255,255,0.1); } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="bg-layer"></div> | |
| <section class="hero container"> | |
| <div class="hero-text"> | |
| <h1>Pockit.</h1> | |
| <p>Infinite storage for heavy assets, binaries, and production data. Built for developers who need more.</p> | |
| <a href="login.html" class="btn">Get Started</a> | |
| <a href="https://pockit-cloud.github.io/cli-docs/" class="btn" target="_blank" rel="noopener noreferrer">Docs</a> | |
| </div> | |
| <div class="hero-image"><img src="screenshot.png" alt="Pockit Dashboard"></div> | |
| </section> | |
| <div class="container section-padding"> | |
| <h2>Workflow Optimized</h2> | |
| <div class="grid"> | |
| <div class="card"><h3>Cold Storage Tiers</h3><p>Archive dormant assets for pennies. Instant retrieval, total reliability.</p></div> | |
| <div class="card"><h3>Immutable History</h3><p>Every commit creates a unique hash. Roll back to any state in seconds.</p></div> | |
| <div class="card"><h3>Global Edge Replication</h3><p>Your data lives everywhere. Low latency, high availability, no excuses.</p></div> | |
| </div> | |
| </div> | |
| <div class="container section-padding"> | |
| <h2>Performance Comparison</h2> | |
| <div class="comparison-wrapper"> | |
| <table class="comparison"> | |
| <tr><th>Feature</th><th>Traditional Cloud</th><th>Pockit</th></tr> | |
| <tr><td>Binary Performance</td><td>Standard</td><td>Optimized</td></tr> | |
| <tr><td>CLI/API Access</td><td>Limited</td><td>Full Root/Dev Access</td></tr> | |
| <tr><td>Latency</td><td>Variable</td><td>Global Edge-Synced</td></tr> | |
| </table> | |
| </div> | |
| </div> | |
| <footer class="container"> | |
| <p>© 2026 Pockit Storage Systems. Built for developers.</p> | |
| </footer> | |
| </body> | |
| </html> |