diff --git a/frontend/src/components/WorkspaceLayout/index.tsx b/frontend/src/components/WorkspaceLayout/index.tsx
index 2feb0a9..bdbf0e0 100644
--- a/frontend/src/components/WorkspaceLayout/index.tsx
+++ b/frontend/src/components/WorkspaceLayout/index.tsx
@@ -1,8 +1,9 @@
import { Outlet } from 'react-router-dom';
import Header from '../Header';
-import { Project } from '@/types';
+import { Label, Project } from '@/types';
import { ResizablePanelGroup, ResizablePanel } from '../ui/resizable';
import WorkspaceSidebar from '../WorkspaceSidebar';
+import WorkspaceLabelBar from '../WorkspaceLabelBar';
export default function WorkspaceLayout() {
const workspace: { name: string; projects: Project[] } = {
@@ -59,21 +60,41 @@ export default function WorkspaceLayout() {
},
],
};
+ const labels: Label[] = [
+ {
+ id: 1,
+ name: 'Label 1',
+ color: '#FFaa33',
+ },
+ {
+ id: 2,
+ name: 'Label 2',
+ color: '#aaFF55',
+ },
+ {
+ id: 3,
+ name: 'Label 3',
+ color: '#77aaFF',
+ },
+ ];
return (
<>
-
+
-
-
+
+
+
+
+
-
+
>
);
}