diff --git a/src/app/dashboard/studies/new/page.tsx b/src/app/dashboard/studies/new/page.tsx index 2d9bd41..539fcd2 100644 --- a/src/app/dashboard/studies/new/page.tsx +++ b/src/app/dashboard/studies/new/page.tsx @@ -8,12 +8,11 @@ import { Input } from "~/components/ui/input"; import { Label } from "~/components/ui/label"; import { Textarea } from "~/components/ui/textarea"; import { useToast } from "~/hooks/use-toast"; -import { ArrowLeft } from "lucide-react"; +import { ArrowLeft, Settings2Icon } from "lucide-react"; import Link from "next/link"; import { useActiveStudy } from "~/context/active-study"; -import { hasPermission } from "~/lib/permissions-client"; -import { PERMISSIONS } from "~/lib/permissions"; import { getApiUrl } from "~/lib/fetch-utils"; + export default function NewStudy() { const [title, setTitle] = useState(""); const [description, setDescription] = useState(""); @@ -64,53 +63,75 @@ export default function NewStudy() { return (
+
+

Create New Study

+

+ Set up a new research study and configure its settings +

+
- - - Create New Study - - Set up a new research study - - - -
-
- - setTitle(e.target.value)} - placeholder="Enter study title" - required - /> -
-
- -