This commit is contained in:
海龙 2025-08-29 08:35:49 +08:00
parent 2f8ffbb8ba
commit 41530410e8

View File

@ -376,19 +376,19 @@ export function TopBar({
<Button
variant="ghost"
size="sm"
onClick={() => router.push("/login")}
className="bg-white text-black rounded-full hover:scale-105"
onClick={() => router.push("/signup")}
className="text-gray-300 hover:text-white"
data-alt="login-button"
>
Go Started
Sign Up
</Button>
<Button
variant="ghost"
size="sm"
onClick={() => router.push("/signup")}
onClick={() => router.push("/login")}
className="bg-white text-black rounded-full hover:scale-105"
data-alt="signup-button"
>
Sign Up
Go Started
</Button>
</div>
)}