diff --git a/components/editor/access-denied.tsx b/components/editor/access-denied.tsx index 726d0fb..c643b67 100644 --- a/components/editor/access-denied.tsx +++ b/components/editor/access-denied.tsx @@ -9,9 +9,9 @@ import Link from "next/link"; */ export function AccessDenied() { return ( -
+
-
+

diff --git a/components/editor/canvas.tsx b/components/editor/canvas.tsx index 0e98dfd..4bbbfd8 100644 --- a/components/editor/canvas.tsx +++ b/components/editor/canvas.tsx @@ -234,7 +234,7 @@ function CollaborativeFlow() { return (
@@ -249,7 +249,7 @@ function CollaborativeFlow() { fitView connectionMode={ConnectionMode.Loose} proOptions={{ hideAttribution: true }} - className="bg-bg-base" + className="!bg-transparent" > diff --git a/components/editor/workspace-shell.tsx b/components/editor/workspace-shell.tsx index f7eafa9..1f142e8 100644 --- a/components/editor/workspace-shell.tsx +++ b/components/editor/workspace-shell.tsx @@ -2,7 +2,7 @@ import { useState } from "react"; import { UserButton } from "@clerk/nextjs"; -import { PanelLeftClose, PanelLeftOpen, Share2, MessageSquare, X } from "lucide-react"; +import { PanelLeftClose, PanelLeftOpen, Share2, X, Network, Sparkles, Bot } from "lucide-react"; import { Button } from "@/components/ui/button"; import { ScrollArea } from "@/components/ui/scroll-area"; @@ -55,7 +55,7 @@ export function WorkspaceShell({ onToggleSidebar={() => setIsSidebarOpen((open) => !open)} onToggleAiSidebar={() => setIsAiSidebarOpen((open) => !open)} aiSidebarOpen={isAiSidebarOpen} - onShareClick={() => {}} + onShareClick={() => { }} />
+
+ +
setIsSidebarOpen(false)} @@ -93,7 +96,6 @@ export function WorkspaceShell({ sharedProjects={sharedProjects} currentRoomId={currentRoomId} /> - setIsAiSidebarOpen(false)} @@ -153,13 +155,16 @@ function EditorNavbar({ )} - {projectName ? ( - - {projectName} - - ) : ( - Editor - )} +
+ {projectName ? ( + + {projectName} + + ) : ( + Ghost Room + )} + Workspace +
-
-
@@ -236,8 +240,8 @@ function ProjectSidebar({