"use client"; import type { ReactNode } from "react"; import { CreateFlowProvider } from "./context/CreateFlowContext"; import CreateFlowTopNav from "../components/utility/CreateFlowTopNav"; import CreateFlowFooter from "../components/utility/CreateFlowFooter"; import Button from "../components/buttons/Button"; /** * Layout for the Create Rule Flow * * Provides a full-screen layout without the root layout's TopNav/Footer. * This layout wraps all create flow pages and provides the CreateFlowContext. * Includes the create flow-specific TopNav and Footer components. */ export default function CreateFlowLayout({ children, }: { children: ReactNode; }) { return (
{children}
Next } />
); }