55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
"use client";
|
||
|
||
import type { ReactNode } from "react";
|
||
import { CreateFlowHeaderLockup } from "./CreateFlowHeaderLockup";
|
||
import { CreateFlowStepShell } from "./CreateFlowStepShell";
|
||
import {
|
||
CREATE_FLOW_MD_CENTERED_SHELL_CLASS,
|
||
CREATE_FLOW_MD_UP_GRID_CELL_CLASS,
|
||
CREATE_FLOW_TWO_COLUMN_MAX_WIDTH_CLASS,
|
||
} from "./createFlowLayoutTokens";
|
||
|
||
/** Shared `Rule` / template card chrome: width + radius; padding comes from `Rule` (L+expanded = 24px). */
|
||
export const CREATE_FLOW_REVIEW_RULE_LAYOUT_CLASS =
|
||
"w-full min-w-0 rounded-[12px] md:rounded-[24px] md:max-w-[640px]";
|
||
|
||
type CreateFlowLockupCardStepShellProps = {
|
||
lockupTitle: string;
|
||
lockupDescription?: string;
|
||
children: ReactNode;
|
||
};
|
||
|
||
/** Lockup + card: `wideGrid`, two columns from `md:`, centered in the nav–footer band from `md`. */
|
||
export function CreateFlowLockupCardStepShell({
|
||
lockupTitle,
|
||
lockupDescription,
|
||
children,
|
||
}: CreateFlowLockupCardStepShellProps) {
|
||
return (
|
||
<CreateFlowStepShell
|
||
variant="wideGrid"
|
||
contentTopBelowMd="space-800"
|
||
className={CREATE_FLOW_MD_CENTERED_SHELL_CLASS}
|
||
>
|
||
<div
|
||
className={`mx-auto flex w-full min-w-0 flex-col gap-4 md:grid md:w-full md:grid-cols-2 md:justify-items-center md:gap-[var(--measures-spacing-1200,48px)] ${CREATE_FLOW_TWO_COLUMN_MAX_WIDTH_CLASS}`}
|
||
>
|
||
<div
|
||
className={`flex min-w-0 flex-col justify-start md:justify-center ${CREATE_FLOW_MD_UP_GRID_CELL_CLASS}`}
|
||
>
|
||
<CreateFlowHeaderLockup
|
||
title={lockupTitle}
|
||
description={lockupDescription}
|
||
justification="left"
|
||
/>
|
||
</div>
|
||
<div
|
||
className={`flex min-w-0 flex-col items-stretch ${CREATE_FLOW_MD_UP_GRID_CELL_CLASS}`}
|
||
>
|
||
{children}
|
||
</div>
|
||
</div>
|
||
</CreateFlowStepShell>
|
||
);
|
||
}
|