"use client"; import { ProtoLogoMark } from "@prototype/components/brand/proto-logo-mark"; import { Button } from "@prototype/components/ui/button"; import { ArrowRight } from "lucide-react"; type PrototypeBootstrapOnboardingWelcomeStepProps = { title: string; description: string; onContinue?: () => void; continueDisabled?: boolean; isContinuing?: boolean; }; export function PrototypeBootstrapOnboardingWelcomeStep({ title, description, onContinue, continueDisabled = false, isContinuing = false, }: PrototypeBootstrapOnboardingWelcomeStepProps) { return (
{description}
{onContinue && ( )}