"use client" import { motion } from "framer-motion" import { Building2, Users, TrendingUp } from "lucide-react" const STEPS = [ { step: "01", icon: Building2, title: "Add your properties", body: "Create properties, add units with rent amounts, and upload documents. Takes 3 minutes per property.", color: "text-indigo-400", bg: "bg-indigo-500/10 border-indigo-500/30", shadow: "shadow-indigo-500/20", }, { step: "02", icon: Users, title: "Invite your tenants", body: "Add tenant profiles, assign them to units, create leases. Each tenant automatically gets a private portal link.", color: "text-violet-400", bg: "bg-violet-500/10 border-violet-500/30", shadow: "shadow-violet-500/20", }, { step: "03", icon: TrendingUp, title: "Run on autopilot", body: "Rent reminders go out automatically. Maintenance gets logged. Lease expiries alert you 60 days early.", color: "text-emerald-400", bg: "bg-emerald-500/10 border-emerald-500/30", shadow: "shadow-emerald-500/20", }, ] export function HowItWorks() { return (

How it works

Up and running in under 10 minutes

No training, no onboarding call. Sign up, add your properties, and you're managing.

{/* Connector line */}
{STEPS.map((step, i) => (
{step.step}

{step.title}

{step.body}

))}
Start for free — takes 3 minutes
) }