45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
"use client"
|
|
import CreateWizardForm from "@/components/form/form-wizard/wizard-form";
|
|
import AuthtorsTable from "@/components/table/authors-table";
|
|
import CustomerTable from "@/components/table/customers-table";
|
|
import InvoiceTable from "@/components/table/invoice-table";
|
|
import UserTable from "@/components/table/article-table";
|
|
import UsersTable from "@/components/table/users-table";
|
|
import { Card, Divider, Image } from "@nextui-org/react";
|
|
|
|
export default function WizardPage() {
|
|
return (
|
|
<div className="flex h-[96vh] overflow-x-hidden overflow-y-scroll gap-0 grid rounded-lg border-small ml-4">
|
|
<div className="px-4">
|
|
<div className="bg-blue-900 mx-[24px] h-[120px] my-5 rounded-md">
|
|
<div>
|
|
|
|
<div className="flex flex-row justify-between items-center">
|
|
<div>
|
|
<p className="text-2xl font-semibold ml-5 ">Form Wizard</p>
|
|
<p className="text-white ml-5">This is Form WizardPage</p>
|
|
</div>
|
|
<div className="pr-5">
|
|
<Image
|
|
width={110}
|
|
alt="NextUI hero Image"
|
|
src="https://modernize-nextjs-dark.vercel.app/_next/image?url=%2F_next%2Fstatic%2Fmedia%2FChatBc.3d875e2e.png&w=256&q=75"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div >
|
|
<Card className="rounded-md mx-[24px]">
|
|
<p className="ml-5 mt-5 text-lg">Form Wizard</p>
|
|
<Divider className="w-full my-3" />
|
|
<div>
|
|
<CreateWizardForm />
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|