diff --git a/src/app/(dashboard)/page.tsx b/src/app/(dashboard)/page.tsx index 9aa1351..7d30017 100644 --- a/src/app/(dashboard)/page.tsx +++ b/src/app/(dashboard)/page.tsx @@ -1,6 +1,6 @@ "use client"; -import React, { createContext, Dispatch, forwardRef, ReactNode, SetStateAction, useContext, useId, useState } from "react"; +import React, { createContext, Dispatch, ReactNode, SetStateAction, useContext, useState } from "react"; import { useLiveQuery } from "dexie-react-hooks"; import { addProject, db, deleteProject } from "@/lib/db"; import { Label } from "@/components/ui/label"; @@ -108,8 +108,30 @@ const ProjectInfoFormSchema = z.object({ type ProjectInfoForm = z.infer; +const ProjectInfoFormFields = ({ form }: { form: UseFormReturn }) => ( + <> + ( + + Title + + + + + + )} /> + ( + + Description + +