This commit is contained in:
海龙 2025-08-29 08:30:41 +08:00
parent 8b1b26ac1f
commit 2f8ffbb8ba

View File

@ -373,14 +373,23 @@ export function TopBar({
</div> </div>
) : ( ) : (
<div className="flex items-center space-x-4"> <div className="flex items-center space-x-4">
<Button <Button
variant="ghost" variant="ghost"
size="sm" size="sm"
onClick={() => router.push("/create")} onClick={() => router.push("/login")}
className="bg-white text-black rounded-full hover:scale-105" className="bg-white text-black rounded-full hover:scale-105"
> >
Go Started Go Started
</Button> </Button>
<Button
variant="ghost"
size="sm"
onClick={() => router.push("/signup")}
className="bg-white text-black rounded-full hover:scale-105"
data-alt="signup-button"
>
Sign Up
</Button>
</div> </div>
)} )}
</div> </div>