diff --git a/src/app/(dashboard)/dashboard/(quiz)/profile/page.tsx b/src/app/(dashboard)/dashboard/(quiz)/profile/page.tsx new file mode 100644 index 0000000..6cf9eb0 --- /dev/null +++ b/src/app/(dashboard)/dashboard/(quiz)/profile/page.tsx @@ -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 ( + +
+ + +
+
+ ); +}