Components
Loading preview...
Animated onboarding progress card showing three steps with visual loaders, transitions, and completion indicators.
npx shadcn@latest add https://21st.dev/r/amanshakya307/onboard-card// visit https://forgeui.in for more such components
import OnboardCard from '@/components/ui/onboard-card';
const Demo = () => {
return (
<OnboardCard
duration={3000} // 3sec
step1="Welcome Aboard"
step2="Verifying Details"
step3="Account Created"
/>
)
}
export default Demo