"use client"; import { X } from "lucide-react"; import { Button, Card, CardContent, CardHeader, CardTitle } from "../../../shadcnui"; import { OnboardingCardRenderProps } from "../interfaces"; // Matches a360ai ShepherdCard design exactly export function OnboardingCard({ step, currentIndex, totalSteps, labels, onNext, onPrevious, onClose, isFirst, isLast, }: OnboardingCardRenderProps) { return ( {step.title}

{labels.stepCounter(currentIndex + 1, totalSteps)}

{step.content}
); }