"use client";
import React, { Suspense } from "react";
import CCPageBg from "@/app/components/coCreationJourney/pageBg";
import wizardData from "@/app/components/coCreationJourney/data/morniGuidance.json";
import Wizard from "@/app/components/coCreationJourney/wizard";
import { WizardProvider } from "@/app/components/coCreationJourney/wizardContext";

export default function MorniGuidance() {
  return (
    <>
      <CCPageBg />
      <div className="fixed top-0 left-0 z-60 h-full w-full">
        <div className="wrapper">
          <WizardProvider>
            <Suspense>
              <Wizard wizardData={wizardData} startPath="morni-guidance" />
            </Suspense>
          </WizardProvider>
        </div>
      </div>
    </>
  );
}
