feat: user profile
This commit is contained in:
parent
ca0e7f71b3
commit
e7f6912cca
|
@ -0,0 +1,15 @@
|
|||
import BreadCrumb from "@/components/breadcrumb";
|
||||
import { CreateProfileOne } from "@/components/forms/user-profile-stepper/create-profile";
|
||||
import { ScrollArea } from "@/components/ui/scroll-area";
|
||||
|
||||
const breadcrumbItems = [{ title: "Profile", link: "/dashboard/profile" }];
|
||||
export default function page() {
|
||||
return (
|
||||
<ScrollArea className="h-full">
|
||||
<div className="flex-1 space-y-4 p-4 md:p-8 pt-6">
|
||||
<BreadCrumb items={breadcrumbItems} />
|
||||
<CreateProfileOne categories={[]} initialData={null} />
|
||||
</div>
|
||||
</ScrollArea>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue