"use client"; import Link from "next/link"; import { JM } from "@/components/project-creation/modal-theme"; export function MvpSetupStepPlaceholder({ title, subtitle, body, primaryHref, primaryLabel, nextHref, nextLabel, }: { title: string; subtitle: string; body: string; primaryHref: string; primaryLabel: string; nextHref: string; nextLabel: string; }) { return (

{title}

{subtitle}

{body}

{primaryLabel} {nextLabel} →
); }