import Image from "next/image"; export function StepsSection() { const steps = [ { id: "01", category: "Organize", description: "Put projects, tasks, and files in one place", }, { id: "02", category: "Align", description: "Meet and message with context", }, { id: "03", category: "Optimize", description: "Track time, let AI follow up.", }, ]; return (
{/* Top Header Block (Text_1429_10886: w: 1010, h: 132, y: 0) */}
{/* Glow Aura behind badge (Back_1429_10887: Ellipse 1578 & 1579) */}
{/* Badge (3_1429_10892: w: 40, h: 40) */}
{/* Text Container (Text_Container_1429_10894: w: 964, h: 68, itemSpacing: 12) */}
{/* Title (Title_1429_10895: 32px, Medium, #ffffff) */}

Set up your smart management stack in 3 steps.

{/* Subtitle (Subtitle_1429_10896: 14px, Regular, #6f829e) */}

Projects, tasks, meetings, chat, files, and time in one connected desktop workspace, where AI reduces overhead and keeps everything in context.

{/* Steps Container (Steps_Container_1429_10897: w: 1216, h: 145, y: 212) */}
{steps.map((step, idx) => (
{/* Step Card (w: 389, h: 145, radius: 24, fill: rgba(8,15,26,0.5), stroke: rgba(255,255,255,0.12)) */}
{/* Internal Glow Effects (Ellipse 1071 & 1072) */}
{/* Star Particle Constellation Overlay (stars) */}
{/* Left Column: Number + 3D Grid Perspective Mesh */}
{step.id}
{/* Vertical Gradient Line Divider (Line 7: 1px x 81px) */}
{/* Right Column: Title + Subtitle */}
{step.category} {step.description}
{/* Step Connector Chevron Button (Step_Container: w: 40, h: 40) */} {idx < steps.length - 1 && (
)}
))}
{/* Bottom CTA Button Frame (Frame 2095586189: w: 129, h: 43, y: 437) */}
{/* Glow Aura behind button (Back: Ellipse 1578 & 1579) */}
{/* Button (Button_1429_10910: w: 129, h: 44, radius: 12) */}
); }