fix(landing): replace pricing CTA with user-appropriate action text

- change hosted plan CTA from 'Deploy on Cloud' to contextual copy
- show 'Start Now' for new users and 'Go to Dashboard' for logged-in users
This commit is contained in:
Yusuf İpek
2026-02-22 17:20:08 +03:00
parent ab0dc82e2a
commit 55a2c16a7f
+1 -1
View File
@@ -893,7 +893,7 @@ export function LandingPage({ isLoggedIn }: LandingPageProps) {
>
<span className="pointer-events-none absolute inset-0 -translate-x-[101%] bg-primary-foreground/10 transition-transform duration-300 group-hover:translate-x-0" />
<span className="relative z-10 inline-flex items-center gap-2">
Deploy on Cloud
{isLoggedIn ? 'Go to Dashboard' : 'Start Now'}
<MoveRight className="h-4 w-4" />
</span>
</Link>