"use client"; import React from "react"; import { motion } from "framer-motion"; import { Card, CardContent, } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { ArrowRight, } from "lucide-react"; import { crm } from "@/services/Constants"; const WorkflowProcess: React.FC = () => { return (
Simple Process

How{" "} CRM Works

Four simple steps to revolutionize your CRM Software

{crm.WORKFLOW_STEPS.map((step, idx) => (
{step.step}

{step.title}

{step.description}

{idx < crm.WORKFLOW_STEPS.length - 1 && (
)}
))}
); }; export default WorkflowProcess