diff --git a/vibn-frontend/app/components/auth/AuthScreen.tsx b/vibn-frontend/app/components/auth/AuthScreen.tsx index 5594b95..612fefa 100644 --- a/vibn-frontend/app/components/auth/AuthScreen.tsx +++ b/vibn-frontend/app/components/auth/AuthScreen.tsx @@ -72,10 +72,6 @@ export default function AuthScreen({ signIn("google", { callbackUrl: cb }); }; - const trust = isSignup - ? ["No credit card", "No homework", "🇨🇦 Built in Canada"] - : ["Built in Canada", "Your data stays safe", "No homework"]; - return (
@@ -135,7 +131,7 @@ export default function AuthScreen({

{isSignup ? ( <> - Create your workspace. + Create your account. ) : ( <> @@ -144,9 +140,7 @@ export default function AuthScreen({ )}

- {isSignup - ? "Set up your account with an email and password — you'll be building in seconds." - : "Pick up right where you left off."} + {isSignup ? null : "Pick up right where you left off."}

@@ -215,11 +209,11 @@ export default function AuthScreen({ {submitting ? ( <> {" "} - {isSignup ? "Creating your workspace…" : "Signing in…"} + {isSignup ? "Creating your account…" : "Signing in…"} ) : isSignup ? ( <> - Create my workspace + Create my account ) : ( <>Sign in @@ -270,7 +264,7 @@ export default function AuthScreen({
- +
🇨🇦 Built in Canada
@@ -318,22 +312,6 @@ function Glows() { ); } -function TrustStrip({ items }: { items: string[] }) { - return ( -
- {items.map((item, i) => ( - - {i > 0 && ·} - {item} - - ))} -
- ); -} - function Arrow({ size = 14 }: { size?: number }) { return (