39 lines
829 B
Svelte
39 lines
829 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import WaveformPlayer from '$lib/components/WaveformPlayer.svelte';
|
||
|
|
import TranscriptEditor from '$lib/components/TranscriptEditor.svelte';
|
||
|
|
import SpeakerManager from '$lib/components/SpeakerManager.svelte';
|
||
|
|
import AIChatPanel from '$lib/components/AIChatPanel.svelte';
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div class="workspace">
|
||
|
|
<div class="main-content">
|
||
|
|
<WaveformPlayer />
|
||
|
|
<TranscriptEditor />
|
||
|
|
</div>
|
||
|
|
<div class="sidebar-right">
|
||
|
|
<SpeakerManager />
|
||
|
|
<AIChatPanel />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.workspace {
|
||
|
|
display: flex;
|
||
|
|
gap: 1rem;
|
||
|
|
padding: 1rem;
|
||
|
|
height: calc(100vh - 3rem);
|
||
|
|
}
|
||
|
|
.main-content {
|
||
|
|
flex: 1;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 1rem;
|
||
|
|
}
|
||
|
|
.sidebar-right {
|
||
|
|
width: 300px;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 1rem;
|
||
|
|
}
|
||
|
|
</style>
|