"use client"; import type { ReactNode } from "react"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { JM } from "@/components/project-creation/modal-theme"; const BUILD_LEFT_BG = "#faf8f5"; const BUILD_LEFT_BORDER = "#e8e4dc"; export function MvpSetupLayoutClient({ workspace, projectId, children, }: { workspace: string; projectId: string; children: ReactNode; }) { const pathname = usePathname() ?? ""; const base = `/${workspace}/project/${projectId}/mvp-setup`; const steps = [ { href: `${base}/describe`, label: "Describe", sub: "Your idea", suffix: "/describe" }, { href: `${base}/architect`, label: "Architect", sub: "Discovery", suffix: "/architect" }, { href: `${base}/design`, label: "Design", sub: "Look & feel", suffix: "/design" }, { href: `${base}/website`, label: "Website", sub: "Grow", suffix: "/website" }, { href: `${base}/launch`, label: "Build MVP", sub: "Review & launch", suffix: "/launch" }, ] as const; return (