import { PublicShell } from "./PublicShell"; import { Card } from "@/components/ui/Card"; import type { ReactNode } from "react"; export function FlowPage({ title, step, children }: { title: string; step: string; children?: ReactNode }) { return
{step}

{title}

{children ?
{children}
: null}
; }