diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 06a52ca..223806e 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -1,6 +1,7 @@ 'use client' import { motion } from "motion/react"; +import { Navbar } from "@/components/navbar"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Lock, Mail } from "lucide-react"; @@ -12,7 +13,7 @@ export default function Login() { const [email, setEmail] = useState(""); const [password, setPassword] = useState(""); - const [error, setError] = useState(null); + const [error, setError] = useState(null); const handleLogin = async () => { setError(null); @@ -26,70 +27,77 @@ export default function Login() { }; return ( -
- {/* Card */} - -

Login

+
+
+ +
- {error &&

{error}

} +
+ {/* Card */} + +

Login

-
-
- -
- - setEmail(e.target.value)} - /> + {error &&

{error}

} + +
+
+ +
+ + setEmail(e.target.value)} + /> +
-
-
- -
- - setPassword(e.target.value)} - /> +
+ +
+ + setPassword(e.target.value)} + /> +
+ + +
+
+

or

+
+
+
- -
-
-

or

-
-
- -
+

+ Don't have an account? Register +

+ +
-

- Don't have an account? Register -

-
); } diff --git a/src/app/page.tsx b/src/app/page.tsx index d9f3bcb..8131027 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,19 +1,13 @@ 'use client' import { motion } from "motion/react"; +import { Navbar } from "@/components/navbar"; import { Button } from "@/components/ui/button"; import { ArrowRight, CheckCircle, MessageCircle } from "lucide-react"; export default function Home() { return (
- {/* Navbar */} - + {/* Hero Section */} { + return ( + + ); +}; + +export { Navbar }; \ No newline at end of file