web-humas-fe/app/(admin)/admin/(basic-form)/form-vertical/page.tsx

31 lines
984 B
TypeScript
Raw Normal View History

2024-04-19 13:26:27 +00:00
"use client"
2024-04-24 04:14:06 +00:00
import { Image } from "@nextui-org/react";
2024-04-19 13:26:27 +00:00
export default function VerticalPage() {
return (
2024-04-24 04:14:06 +00:00
<div className="flex h-[96vh] overflow-x-hidden overflow-y-scroll gap-0 rounded-lg border-small ml-4">
2024-04-19 13:26:27 +00:00
<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 ">Vertical Form</p>
<p className="text-gray-500 ml-5">Home<span className="text-black">{" > "}</span> <span className=" text-white">Verical Form</span></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 >
2024-04-24 04:14:06 +00:00
{/* <CreateVerticalForm /> */}
2024-04-19 13:26:27 +00:00
</div>
</div>
);
}