diff --git a/package-lock.json b/package-lock.json
index c4871b2..032ea75 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -29,6 +29,7 @@
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
+ "react-icons": "^5.5.0",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
@@ -11879,6 +11880,15 @@
"react": "^19.2.3"
}
},
+ "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": "19.2.4",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-19.2.4.tgz",
diff --git a/package.json b/package.json
index 53e2073..3d72051 100644
--- a/package.json
+++ b/package.json
@@ -31,6 +31,7 @@
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
+ "react-icons": "^5.5.0",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
diff --git a/src/app/auth/login/lib/actions.ts b/src/app/auth/login/lib/actions.ts
deleted file mode 100644
index e21ed0e..0000000
--- a/src/app/auth/login/lib/actions.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export const login = ()=>{
-
-}
\ No newline at end of file
diff --git a/src/app/auth/login/page.tsx b/src/app/auth/login/page.tsx
deleted file mode 100644
index e64f9e1..0000000
--- a/src/app/auth/login/page.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import { redirect } from "next/navigation";
-import { LoginForm } from "@/src/components/auth/LoginForm";
-import { getServerSession } from "next-auth";
-import { authOptions } from "../../api/auth/[...nextauth]/route";
-
-export default async function LoginPage({
- className,
- ...props
-}: React.ComponentProps<"div">) {
- const session = await getServerSession(authOptions);
-
- if (session) {
- redirect("/dashboard");
- }
-
- return