diff --git a/components/layout/project-shell.tsx b/components/layout/project-shell.tsx index 71abb1c..ee41c46 100644 --- a/components/layout/project-shell.tsx +++ b/components/layout/project-shell.tsx @@ -6,6 +6,7 @@ import Link from "next/link"; import { signOut, useSession } from "next-auth/react"; import { CooChat } from "./coo-chat"; import { Toaster } from "sonner"; +import { Globe, Cloud, Palette, Code2, BarChart2, MoreHorizontal } from "lucide-react"; interface ProjectShellProps { children: ReactNode; @@ -34,12 +35,13 @@ const SECTIONS = [ // Tool icons shown to the right of section pills const TOOLS = [ - { id: "preview", icon: "↗", label: "Preview", title: "Open preview" }, - { id: "tasks", icon: "≡", label: "Tasks", title: "Agent tasks" }, - { id: "code", icon: ">", label: "Code", title: "Code" }, - { id: "design", icon: "◈", label: "Design", title: "Design" }, - { id: "backend", icon: "⬡", label: "Backend", title: "Backend / Infra" }, -] as const; + { id: "preview", Icon: Globe, label: "Preview", title: "Open preview" }, + { id: "backend", Icon: Cloud, label: "Backend", title: "Backend / Infra" }, + { id: "design", Icon: Palette, label: "Design", title: "Design" }, + { id: "code", Icon: Code2, label: "Code", title: "Code" }, + { id: "analytics",Icon: BarChart2, label: "Analytics", title: "Analytics" }, + { id: "more", Icon: MoreHorizontal, label: "More", title: "More options" }, +]; export function ProjectShell({ children, @@ -140,17 +142,15 @@ export function ProjectShell({ {/* Tool icons */}