feat(speech): add prompt voice input groundwork

This commit is contained in:
Shantur Rathore
2026-03-12 22:04:57 +00:00
parent a950d47df0
commit f3a1ccd8b8
34 changed files with 1285 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
import type { Component } from "solid-js"
import SpeechSettingsCard from "./speech-settings-card"
export const SpeechSettingsSection: Component = () => {
return (
<div class="settings-section-stack">
<SpeechSettingsCard />
</div>
)
}