Mining/cmd/desktop/mining-desktop/frontend/src/app/app.html
snider 80d2c56047 feat: Add Wails desktop app with cross-platform GitHub Actions build
Create native desktop application using Wails v3 with Angular frontend.
The app wraps the mining CLI backend and exposes functionality via
TypeScript bindings for system info, miner control, profiles, and stats.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 01:55:14 +00:00

23 lines
773 B
HTML

<div class="container">
<div>
<a (click)='openLink("https://v3alpha.wails.io")'>
<img src="/wails.png" class="logo" alt="Wails logo"/>
</a>
<a (click)='openLink("https://angular.io")'>
<img src="/angular.png" class="logo vanilla" alt="JavaScript logo"/>
</a>
</div>
<h1>Wails + Angular v20</h1>
<div class="card">
<div class="result">{{ result() }}</div>
<div class="input-box">
<input class="input" type="text" autocomplete="off" [value]="name()" (input)="name.set($event.target.value)"/>
<button class="btn" (click)="doGreet()">Greet</button>
</div>
</div>
<div class="footer">
<div><p>Click on the Wails logo to learn more</p></div>
<div><p>{{ time() }}</p></div>
</div>
</div>
<router-outlet />