From e7f6912cca529f1bdbd97dfd1d09a3e8d25a1395 Mon Sep 17 00:00:00 2001 From: mehedi-hasan Date: Sun, 7 Apr 2024 22:54:23 +0600 Subject: [PATCH] feat: user profile --- .../(dashboard)/dashboard/(quiz)/profile/page.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/app/(dashboard)/dashboard/(quiz)/profile/page.tsx 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 ( + +
+ + +
+
+ ); +}