Files
VoxVera/gui/electron/index.html
2025-06-19 13:04:11 -04:00

17 lines
322 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>VoxVera GUI</title>
</head>
<body>
<h1>VoxVera</h1>
<button id="quickstart">Quickstart</button>
<script>
document.getElementById('quickstart').addEventListener('click', () => {
window.voxvera.quickstart();
});
</script>
</body>
</html>