remove auth

This commit is contained in:
Abubeker Yasin
2026-07-15 20:05:55 +03:00
parent 89ae06a5a8
commit 2ffb2f9f60
3 changed files with 31 additions and 24 deletions

View File

@@ -192,20 +192,22 @@ export default function AppSidebar() {
)}
</div>
) : (
<div className="flex items-center gap-2 px-1 pt-1">
<Link
href="/login"
className="flex-1 text-center px-3 py-2 text-sm font-medium text-gray-100 hover:bg-white/10 rounded-lg transition-colors"
>
Sign in
</Link>
<Link
href="/register"
className="flex-1 text-center px-3 py-2 text-sm font-medium bg-white text-[rgb(20_113_76)] hover:bg-gray-100 rounded-lg transition-colors"
>
Register
</Link>
</div>
// TODO: re-enable auth — Sign in / Register links commented out until auth integration
// <div className="flex items-center gap-2 px-1 pt-1">
// <Link
// href="/login"
// className="flex-1 text-center px-3 py-2 text-sm font-medium text-gray-100 hover:bg-white/10 rounded-lg transition-colors"
// >
// Sign in
// </Link>
// <Link
// href="/register"
// className="flex-1 text-center px-3 py-2 text-sm font-medium bg-white text-[rgb(20_113_76)] hover:bg-gray-100 rounded-lg transition-colors"
// >
// Register
// </Link>
// </div>
null
)}
</div>