Files
community-rule/app/(app)/create/page.tsx
T
2026-04-18 14:12:49 -06:00

8 lines
245 B
TypeScript

import { redirect } from "next/navigation";
import { FIRST_STEP } from "./utils/flowSteps";
/** `/create` redirects to the first wizard step (Figma frame 1). */
export default function CreateIndexPage() {
redirect(`/create/${FIRST_STEP}`);
}