diff --git a/client/package-lock.json b/client/package-lock.json index 46f7ac1..a81d4bf 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -20,6 +20,7 @@ "next": "15.4.7", "react": "19.1.0", "react-dom": "19.1.0", + "react-icons": "^5.5.0", "tailwind-merge": "^3.3.1", "tailwindcss-animate": "^1.0.7" }, @@ -5750,6 +5751,15 @@ "react": "^19.1.0" } }, + "node_modules/react-icons": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz", + "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==", + "license": "MIT", + "peerDependencies": { + "react": "*" + } + }, "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", diff --git a/client/package.json b/client/package.json index ce70203..8bc93bc 100644 --- a/client/package.json +++ b/client/package.json @@ -27,6 +27,7 @@ "next": "15.4.7", "react": "19.1.0", "react-dom": "19.1.0", + "react-icons": "^5.5.0", "tailwind-merge": "^3.3.1", "tailwindcss-animate": "^1.0.7" }, diff --git a/client/src/components/task_form.tsx b/client/src/components/task_form.tsx index 5034c34..868be10 100644 --- a/client/src/components/task_form.tsx +++ b/client/src/components/task_form.tsx @@ -93,34 +93,39 @@ export function TaskForm({ userId, onTaskCreated }: TaskFormProps) { return (
setTaskName(e.target.value)} - placeholder="Task Name" - className="w-full rounded border-2 bg-zinc-700 p-2 text-zinc-200" + placeholder="Task name" required /> -