Index: frontend/src/Login.tsx
===================================================================
--- frontend/src/Login.tsx	(revision 24a2a2a4a4b81dce438be6dc97bc572bf62a589e)
+++ frontend/src/Login.tsx	(revision 4022db101cfab639a8f41419782d6190042bf0dd)
@@ -32,5 +32,5 @@
 	};
 	return (
-		<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100">
+		<div className="flex flex-col items-center justify-center min-h-[90vh] bg-gray-100">
 			<h2 className="text-2xl mb-4">Login</h2>
 			<form
Index: frontend/src/Nav.tsx
===================================================================
--- frontend/src/Nav.tsx	(revision 24a2a2a4a4b81dce438be6dc97bc572bf62a589e)
+++ frontend/src/Nav.tsx	(revision 4022db101cfab639a8f41419782d6190042bf0dd)
@@ -1,4 +1,5 @@
 import { Link } from "react-router-dom";
 import axiosInstance from "./api/axiosInstance";
+import Logo from "./assets/logo-finkwave.png";
 import { useAuth } from "./context/authContext";
 
@@ -6,5 +7,6 @@
 	const { user, setUser, isAuthLoading } = useAuth();
 
-	const handleLogout = async () => {
+	const handleLogout = async (e: React.MouseEvent<HTMLButtonElement>) => {
+		e.preventDefault();
 		try {
 			await axiosInstance.post("/auth/logout");
@@ -18,5 +20,5 @@
 		<div className="bg-gray-800 p-4 flex justify-between items-center">
 			<Link to="/" className="text-white text-lg font-semibold">
-				Finkwave
+				<img src={Logo} alt="Finkwave Logo" className="h-12 w-auto" />
 			</Link>
 
@@ -40,9 +42,9 @@
 								</div>
 								<button
-									onClick={(e) => {
-										e.preventDefault();
-										handleLogout();
-									}}
-									className="bg-red-500 hover:bg-red-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors duration-200 flex items-center space-x-1"
+									onClick={(e: React.MouseEvent<HTMLButtonElement>) =>
+										handleLogout(e)
+									}
+									className="bg-red-500 hover:bg-red-600 text-white px-4 py-2 rounded-lg text-sm 
+                                    font-medium transition-colors duration-200 flex items-center space-x-1 cursor-pointer"
 								>
 									Logout
@@ -50,10 +52,18 @@
 							</div>
 						) : (
-							<div className="flex items-center space-x-2">
+							<div className="flex items-center space-x-4">
 								<Link
 									to="/login"
-									className="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors duration-200"
+									className="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm 
+                                    font-medium transition-colors duration-200 cursor-pointer"
 								>
 									Login
+								</Link>
+								<Link
+									to="/register"
+									className="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-lg text-sm
+                                    font-medium transition-colors duration-200 cursor-pointer"
+								>
+									Register
 								</Link>
 							</div>
Index: frontend/src/Register.tsx
===================================================================
--- frontend/src/Register.tsx	(revision 24a2a2a4a4b81dce438be6dc97bc572bf62a589e)
+++ frontend/src/Register.tsx	(revision 4022db101cfab639a8f41419782d6190042bf0dd)
@@ -6,5 +6,5 @@
 
 const Register = () => {
-	const { setUser, user } = useAuth();
+	const { setUser } = useAuth();
 	const [username, setUsername] = useState("");
 	const [password, setPassword] = useState("");
@@ -45,5 +45,5 @@
 
 	return (
-		<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100">
+		<div className="flex flex-col items-center justify-center min-h-[90vh] bg-gray-100">
 			<h2 className="text-2xl mb-4">Register</h2>
 			<form className="bg-white p-6 rounded shadow-md w-80">
@@ -101,4 +101,5 @@
 					</label>
 					<input
+						placeholder="todo"
 						type="text"
 						id="profilePhoto"
