diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx deleted file mode 100644 index 25e8c6f..0000000 --- a/src/app/login/page.tsx +++ /dev/null @@ -1,42 +0,0 @@ -"use client"; - -import { useState } from "react"; - -export default function LoginPage() { - const [email, setEmail] = useState(""); - const [password, setPassword] = useState(""); - - const handleLogin = async (e: React.FormEvent) => { - e.preventDefault(); - try { - console.log("Logging in with:", email, password); - } catch (err) { - console.log("Login failed"); - } - }; - - return ( -
-
-

Login

- setEmail(e.target.value)} - placeholder="Email" - className="w-full p-2 mb-4 border rounded" - /> - setPassword(e.target.value)} - placeholder="Password" - className="w-full p-2 mb-4 border rounded" - /> - -
-
- ); -}