Feat: Replace profile dock with server dock

This commit is contained in:
MangoPig
2026-06-16 13:05:31 +01:00
parent f41dbc43fa
commit 7d57792a82
5 changed files with 103 additions and 58 deletions

View File

@@ -4,7 +4,7 @@ import { createSignal, onMount, type JSX } from "solid-js";
import { getDocumentTheme, setTheme, type Theme } from "../../../theme/runtime";
import { WorkspaceHome } from "../../workspace-home/WorkspaceHome/WorkspaceHome";
import { LeftRail } from "../LeftRail/LeftRail";
import { ProfileDock } from "../ProfileDock/ProfileDock";
import { ServerDock } from "../ServerDock/ServerDock";
import { TopBar } from "../TopBar/TopBar";
import { WorkspaceSidebar } from "../WorkspaceSidebar/WorkspaceSidebar";
import styles from "./AppShell.module.scss";
@@ -36,7 +36,7 @@ export const AppShell = (): JSX.Element => {
<WorkspaceSidebar />
<div class={styles.sidebarDock}>
<ProfileDock />
<ServerDock />
</div>
</div>