This commit is contained in:
2026-03-30 10:08:57 +02:00
commit 1272f2c44e
38 changed files with 708 additions and 0 deletions

28
frontend/index.html Normal file
View File

@@ -0,0 +1,28 @@
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri GST Record</title>
</head>
<body>
<main class="container">
<h1>POC 1A - Audio Recording</h1>
<section class="card">
<h2>Audio</h2>
<div class="actions">
<button id="start-audio-btn" type="button">Start audio</button>
<button id="stop-audio-btn" type="button" disabled>Stop
audio</button>
</div>
<pre id="audio-status">Ready.</pre>
</section>
</main>
<script type="module" src="main.ts" defer></script>
</body>
</html>