Tauri Init

This commit is contained in:
eneller
2025-10-15 21:32:22 +02:00
parent b3369ed342
commit db7763e0e8
41 changed files with 19231 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<main class="container">
<h1>Welcome to Tauri + Angular!</h1>
<div class="row">
<a href="https://tauri.app" target="_blank">
<img src="/assets/tauri.svg" class="logo tauri" alt="Tauri logo" />
</a>
<a href="https://angular.io" target="_blank">
<img src="/assets/angular.svg" class="logo angular" alt="Angular logo" />
</a>
</div>
<p>Click on the logos to learn more about the frameworks</p>
<form class="row" (submit)="greet($event, greetInput.value)">
<input #greetInput id="greet-input" placeholder="Enter a name..." />
<button type="submit">Greet</button>
</form>
<p>{{ greetingMessage }}</p>
</main>