Index: frontend/src/pages/Nav.tsx
===================================================================
--- frontend/src/pages/Nav.tsx	(revision dc30259a457c1232ee6ee1f6096c9fa50172e058)
+++ frontend/src/pages/Nav.tsx	(revision 27660af8b50619221470b2bbb054bcc3db8ed385)
@@ -22,5 +22,6 @@
 			setUser(undefined);
 			setIsDropdownOpen(false);
-			toast.success("Logout successful!");
+			window.location.href = "/";
+			// toast.success("Logout successful!");
 		} catch (error) {
 			console.error("Logout failed:", error);
@@ -81,4 +82,12 @@
 				{!isAuthLoading && (
 					<div className="flex items-center space-x-3">
+						{user?.isArtist && (
+							<Link
+								to="/my-songs"
+								className="text-white hover:text-[#1db954] px-4 py-2 text-sm font-medium transition-colors"
+							>
+								My Songs
+							</Link>
+						)}
 						{user ? (
 							<div className="relative" ref={dropdownRef}>
