| File was renamed from VoiceSnapGo/frontend/src/components/settings/SettingsWindow.svelte |
| | |
| | | import HistoryPage from './HistoryPage.svelte' |
| | | import UserDictPage from './UserDictPage.svelte' |
| | | import AboutPage from './AboutPage.svelte' |
| | | import AppIcon from '../shared/AppIcon.svelte' |
| | | |
| | | const navItems = [ |
| | | { id: 'general', label: () => t('nav.home') }, |
| | |
| | | <!-- Sidebar --> |
| | | <nav class="sidebar"> |
| | | <div class="sidebar-header"> |
| | | <div class="app-icon">V</div> |
| | | <span class="app-name">VoiceSnap</span> |
| | | <AppIcon size={24} /> |
| | | <span class="app-name">{t('app.name')}</span> |
| | | </div> |
| | | |
| | | <div class="nav-items"> |
| | |
| | | gap: var(--spacing-sm); |
| | | margin-bottom: var(--spacing-xl); |
| | | -webkit-app-region: no-drag; |
| | | } |
| | | |
| | | .app-icon { |
| | | width: 24px; |
| | | height: 24px; |
| | | background: var(--color-blue); |
| | | border-radius: 6px; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | color: white; |
| | | font-weight: 700; |
| | | font-size: 11px; |
| | | } |
| | | |
| | | .app-name { |