"use client"; import OnboardingCard from "@/app/onboarding/components/onboarding-card"; import { OnboardingStep } from "./onboarding-step"; export function OnboardingContent({ handleStepComplete, currentStep, }: { handleStepComplete: () => void; currentStep: number; }) { return (
= 0} isCompleted={currentStep > 0} text="Let's get started by setting up your model provider." > = 1} isCompleted={currentStep > 1} text="Step 1: Configure your settings" >

Let's configure some basic settings for your account.

= 2} isCompleted={currentStep > 2} text="Step 2: Connect your model" >

Choose and connect your preferred AI model provider.

= 3} isCompleted={currentStep > 3} text="Step 3: You're all set!" >

Your account is ready to use. Let's start chatting!

); }