Update auth page header and description for clarity and consistency

This commit is contained in:
Nikita
2025-12-24 17:55:42 -08:00
parent fcc3d9eedf
commit dc3112bb3e
2 changed files with 7 additions and 12 deletions

View File

@@ -134,22 +134,17 @@ function AuthPage() {
Welcome to Linsa! Welcome to Linsa!
</span> </span>
<h1 className="text-3xl font-semibold tracking-tight"> <h1 className="text-3xl font-semibold tracking-tight">
{step === "email" ? "Any Generation. Instantly." : "Enter your code"} {step === "email" ? "Save anything. Share, sell or collaborate. Privately." : "Enter your code"}
</h1> </h1>
<p className="text-sm text-white/70"> {step === "otp" && (
{step === "email" <p className="text-sm text-white/70">
? "Text, images/video on canvas. Fancy context management. Just think it and it's there." We sent a 6-digit code to {email}
: `We sent a 6-digit code to ${email}`} </p>
</p> )}
</header> </header>
{step === "email" ? ( {step === "email" ? (
<form onSubmit={handleSendOTP} className="mt-8 space-y-5"> <form onSubmit={handleSendOTP} className="mt-8 space-y-5">
<div className="space-y-2 text-left">
<p className="text-sm font-medium text-white">
Enter your email and we'll send you a verification code.
</p>
</div>
<label className="block text-left text-xs font-semibold uppercase tracking-wide text-white/60"> <label className="block text-left text-xs font-semibold uppercase tracking-wide text-white/60">
Email Email

View File

@@ -12,7 +12,7 @@ function LandingPage() {
Linsa Linsa
</h1> </h1>
<p className="mt-4 text-xl text-white/80 drop-shadow-lg"> <p className="mt-4 text-xl text-white/80 drop-shadow-lg">
Save anything privately. Share it. Save anything. Share, sell or collaborate. Privately.
</p> </p>
<Link <Link
to="/auth" to="/auth"