"use client" import { Play } from "lucide-react" import { useQuickStart } from "@/components/quick-start" import { cn } from "@/lib/utils" export function ReplayIntroButton({ className }: { className?: string }) { const { open } = useQuickStart() return ( ) }