import { CircuitBoard } from "@/components/ui/circuit-board"
import { Cloud, Server, Shield, Database } from "lucide-react"
<CircuitBoard
nodes={[
{ id: "start", x: 80, y: 150, label: "Cloud", icon: <Cloud className="w-4 h-4" /> },
{ id: "process", x: 250, y: 80, label: "Server", icon: <Server className="w-4 h-4" /> },
{ id: "validate", x: 250, y: 220, label: "Validate", icon: <Shield className="w-4 h-4" /> },
{ id: "end", x: 420, y: 150, label: "Database", icon: <Database className="w-4 h-4" /> },
]}
connections={[
{ from: "start", to: "process", animated: true },
{ from: "start", to: "validate", animated: true },
{ from: "process", to: "end", animated: true },
{ from: "validate", to: "end", animated: true },
]}
width={500}
height={300}
/>