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


export default function StartWithVision() {



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