Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4"
}
}
}
27 changes: 7 additions & 20 deletions src/components/features/FloatingHub.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState, useEffect, useRef } from 'react';
import { createPortal } from 'react-dom';
import { User, Palette, Settings } from 'lucide-react';
import { Info, Settings } from 'lucide-react';
import { useAppStore } from '../../store/useAppStore';

export function FloatingHub() {
Expand Down Expand Up @@ -86,41 +86,28 @@ export function FloatingHub() {
<div className="max-h-[300px] overflow-y-auto no-scrollbar">
<button
onClick={() => {
openSystemTab('cinder-account');
setIsOpen(false);
}}
className="w-full flex items-center justify-between px-3 py-2 text-[12px] hover:bg-[var(--bg-hover)] transition-colors group"
style={{ color: 'var(--text-primary)' }}
>
<span className="font-medium flex items-center gap-2">
<User size={14} />
Account
</span>
</button>
<button
onClick={() => {
openSystemTab('cinder-theme');
openSystemTab('cinder-settings');
setIsOpen(false);
}}
className="w-full flex items-center justify-between px-3 py-2 text-[12px] hover:bg-[var(--bg-hover)] transition-colors group"
style={{ color: 'var(--text-primary)' }}
>
<span className="font-medium flex items-center gap-2">
<Palette size={14} />
Themes
<Settings size={14} />
Settings
</span>
</button>
<button
onClick={() => {
openSystemTab('cinder-settings');
openSystemTab('cinder-info');
setIsOpen(false);
}}
className="w-full flex items-center justify-between px-3 py-2 text-[12px] hover:bg-[var(--bg-hover)] transition-colors group"
style={{ color: 'var(--text-primary)' }}
>
<span className="font-medium flex items-center gap-2">
<Settings size={14} />
Settings
<Info size={14} />
About
</span>
</button>
</div>
Expand Down
129 changes: 0 additions & 129 deletions src/components/features/settings/AccountSettings.tsx

This file was deleted.

120 changes: 0 additions & 120 deletions src/components/features/settings/GeneralSettings.tsx

This file was deleted.

Loading