/** * WelcomeStep — First onboarding screen introducing Claw3D. */ import { Building2, Eye, MessageSquare, Users } from "lucide-react"; const features = [ { icon: Eye, title: "Watch agents work", description: "See your AI agents in real time in a shared 3D office", }, { icon: Users, title: "Manage your fleet", description: "Create, configure, and monitor agents from one place", }, { icon: MessageSquare, title: "Chat and approve", description: "Talk to agents, approve exec commands, review their work", }, { icon: Building2, title: "Build your office", description: "Customize rooms, desks, and the whole office layout", }, ] as const; export const WelcomeStep = () => (

Claw3D turns your AI automation into a{" "} visual workplace — an office where your OpenClaw agents collaborate, code, test, and execute tasks in a shared 3D environment.

This wizard will help you connect to your OpenClaw gateway and get started in about two minutes.

{features.map(({ icon: Icon, title, description }) => (
{title}

{description}

))}
);