|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <meta name="description" content="Dota Keeper - Track your Dota 2 matches and achieve your personal performance goals"> |
| 7 | + <title>Dota Keeper - Your Personal Dota 2 Performance Tracker</title> |
| 8 | + <link rel="stylesheet" href="style.css"> |
| 9 | +</head> |
| 10 | +<body> |
| 11 | + <!-- Hero Section --> |
| 12 | + <section class="hero"> |
| 13 | + <div class="container"> |
| 14 | + <h1 class="hero-title">Dota Keeper</h1> |
| 15 | + <p class="hero-tagline">Your Personal Dota 2 Performance Tracker</p> |
| 16 | + <p class="hero-description"> |
| 17 | + Track your matches, set goals, and improve your gameplay with data-driven insights |
| 18 | + </p> |
| 19 | + <div class="hero-screenshot"> |
| 20 | + <img src="screenshot.png" alt="Dota Keeper App Screenshot" class="screenshot-img"> |
| 21 | + </div> |
| 22 | + </div> |
| 23 | + </section> |
| 24 | + |
| 25 | + <!-- Download Section --> |
| 26 | + <section class="download"> |
| 27 | + <div class="container"> |
| 28 | + <h2>Download</h2> |
| 29 | + <div class="download-grid"> |
| 30 | + <div class="download-card"> |
| 31 | + <div class="platform-icon">⊞</div> |
| 32 | + <h3>Windows</h3> |
| 33 | + <a href="https://github.com/stringhandler/dota-keeper/releases/latest/download/dota-keeper_0.0.0_x64_en-US.msi.zip" |
| 34 | + id="dl-windows" |
| 35 | + class="btn-download"> |
| 36 | + Download .msi |
| 37 | + </a> |
| 38 | + </div> |
| 39 | + <div class="download-card"> |
| 40 | + <div class="platform-icon">⌘</div> |
| 41 | + <h3>macOS</h3> |
| 42 | + <a href="https://github.com/stringhandler/dota-keeper/releases/latest/download/dota-keeper_aarch64.app.tar.gz" |
| 43 | + id="dl-macos-arm" |
| 44 | + class="btn-download"> |
| 45 | + Apple Silicon |
| 46 | + </a> |
| 47 | + <a href="https://github.com/stringhandler/dota-keeper/releases/latest/download/dota-keeper_x64.app.tar.gz" |
| 48 | + id="dl-macos-x64" |
| 49 | + class="btn-download"> |
| 50 | + Intel |
| 51 | + </a> |
| 52 | + </div> |
| 53 | + <div class="download-card"> |
| 54 | + <div class="platform-icon">🐧</div> |
| 55 | + <h3>Linux</h3> |
| 56 | + <a href="https://github.com/stringhandler/dota-keeper/releases/latest/download/dota-keeper_0.0.0_amd64.AppImage.tar.gz" |
| 57 | + id="dl-linux" |
| 58 | + class="btn-download"> |
| 59 | + Download AppImage |
| 60 | + </a> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + <p class="version-info"> |
| 64 | + <span class="version">v0.1.7</span> • Free & Open Source |
| 65 | + </p> |
| 66 | + </div> |
| 67 | + </section> |
| 68 | + |
| 69 | + <!-- Features Section --> |
| 70 | + <section class="features"> |
| 71 | + <div class="container"> |
| 72 | + <h2>Features</h2> |
| 73 | + <div class="features-grid"> |
| 74 | + <div class="feature-card"> |
| 75 | + <h3>📊 Automatic Match Tracking</h3> |
| 76 | + <p>Track match history automatically via OpenDota. No manual entry required.</p> |
| 77 | + </div> |
| 78 | + <div class="feature-card"> |
| 79 | + <h3>🎯 Personal Performance Goals</h3> |
| 80 | + <p>Set custom goals for CS, KDA, GPM, and more. Track what matters to you.</p> |
| 81 | + </div> |
| 82 | + <div class="feature-card"> |
| 83 | + <h3>📈 Goal Progress Analysis</h3> |
| 84 | + <p>Analyze goal progress with distribution charts and detailed statistics.</p> |
| 85 | + </div> |
| 86 | + <div class="feature-card"> |
| 87 | + <h3>💡 Weekly Suggestions</h3> |
| 88 | + <p>Get weekly goal suggestions tailored to your playstyle and performance.</p> |
| 89 | + </div> |
| 90 | + <div class="feature-card"> |
| 91 | + <h3>🔒 Privacy First</h3> |
| 92 | + <p>Free, open source, runs locally — your data stays on your machine.</p> |
| 93 | + </div> |
| 94 | + <div class="feature-card"> |
| 95 | + <h3>🎮 Dota 2 Themed</h3> |
| 96 | + <p>Beautiful interface inspired by the game you love.</p> |
| 97 | + </div> |
| 98 | + </div> |
| 99 | + </div> |
| 100 | + </section> |
| 101 | + |
| 102 | + <!-- Footer --> |
| 103 | + <footer class="footer"> |
| 104 | + <div class="container"> |
| 105 | + <p> |
| 106 | + <span class="version">v0.1.7</span> • |
| 107 | + <a href="https://github.com/stringhandler/dota-keeper" target="_blank" rel="noopener">View on GitHub</a> • |
| 108 | + <a href="https://github.com/stringhandler/dota-keeper/blob/main/LICENSE" target="_blank" rel="noopener">MIT License</a> |
| 109 | + </p> |
| 110 | + <p class="footer-note"> |
| 111 | + Dota 2 is a registered trademark of Valve Corporation. |
| 112 | + This project is not affiliated with or endorsed by Valve Corporation. |
| 113 | + </p> |
| 114 | + </div> |
| 115 | + </footer> |
| 116 | + |
| 117 | + <script src="script.js"></script> |
| 118 | +</body> |
| 119 | +</html> |
0 commit comments