Scaffold Tauri app with local-first recording UI.

Add React frontend and Rust backend stubs for MP3 import, metadata, SQLite storage, and transcription hooks.
This commit is contained in:
ben
2026-08-12 12:18:15 +02:00
parent db24d11197
commit 9ae4ca1b2b
21 changed files with 2974 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mp3Transriber</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>