"use client"; import NumberedList from "../../../components/type/NumberedList"; import { useTranslation } from "../../../contexts/MessagesContext"; import { useCreateFlowMdUp } from "../../hooks/useCreateFlowMdUp"; import { CreateFlowHeaderLockup } from "../../components/CreateFlowHeaderLockup"; import { CreateFlowStepShell } from "../../components/CreateFlowStepShell"; /** Create Community — frame 1 (Figma 20094-16005). */ export function InformationalScreen() { const mdUp = useCreateFlowMdUp(); const t = useTranslation("create.informational"); const items = [ { title: t("steps.0.title"), description: t("steps.0.description"), }, { title: t("steps.1.title"), description: t("steps.1.description"), }, { title: t("steps.2.title"), description: t("steps.2.description"), }, ]; return (
); }